linux-watchdog.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 000/141] Fix fall-through warnings for Clang
@ 2020-11-20 18:21 Gustavo A. R. Silva
  2020-11-20 18:28 ` Joe Perches
                   ` (7 more replies)
  0 siblings, 8 replies; 73+ messages in thread
From: Gustavo A. R. Silva @ 2020-11-20 18:21 UTC (permalink / raw)
  To: linux-kernel
  Cc: alsa-devel, amd-gfx, bridge, ceph-devel, cluster-devel, coreteam,
	devel, dm-devel, drbd-dev, dri-devel, GR-everest-linux-l2,
	GR-Linux-NIC-Dev, intel-gfx, intel-wired-lan, keyrings,
	linux1394-devel, linux-acpi, linux-afs, linux-arm-kernel,
	linux-arm-msm, linux-atm-general, linux-block, linux-can,
	linux-cifs, linux-crypto, linux-decnet-user, linux-ext4,
	linux-fbdev, linux-geode, linux-gpio, linux-hams, linux-hwmon,
	linux-i3c, linux-ide, linux-iio, linux-input, linux-integrity,
	linux-mediatek, linux-media, linux-mmc, linux-mm, linux-mtd,
	linux-nfs, linux-rdma, linux-renesas-soc, linux-scsi, linux-sctp,
	linux-security-module, linux-stm32, linux-usb, linux-watchdog,
	linux-wireless, netdev, netfilter-devel, nouveau, op-tee,
	oss-drivers, patches, rds-devel, reiserfs-devel, samba-technical,
	selinux, target-devel, tipc-discussion, usb-storage,
	virtualization, wcn36xx, x86, xen-devel, linux-hardening,
	Nick Desaulniers, Nathan Chancellor, Miguel Ojeda, Joe Perches,
	Kees Cook, Gustavo A. R. Silva

Hi all,

This series aims to fix almost all remaining fall-through warnings in
order to enable -Wimplicit-fallthrough for Clang.

In preparation to enable -Wimplicit-fallthrough for Clang, explicitly
add multiple break/goto/return/fallthrough statements instead of just
letting the code fall through to the next case.

Notice that in order to enable -Wimplicit-fallthrough for Clang, this
change[1] is meant to be reverted at some point. So, this patch helps
to move in that direction.

Something important to mention is that there is currently a discrepancy
between GCC and Clang when dealing with switch fall-through to empty case
statements or to cases that only contain a break/continue/return
statement[2][3][4].

Now that the -Wimplicit-fallthrough option has been globally enabled[5],
any compiler should really warn on missing either a fallthrough annotation
or any of the other case-terminating statements (break/continue/return/
goto) when falling through to the next case statement. Making exceptions
to this introduces variation in case handling which may continue to lead
to bugs, misunderstandings, and a general lack of robustness. The point
of enabling options like -Wimplicit-fallthrough is to prevent human error
and aid developers in spotting bugs before their code is even built/
submitted/committed, therefore eliminating classes of bugs. So, in order
to really accomplish this, we should, and can, move in the direction of
addressing any error-prone scenarios and get rid of the unintentional
fallthrough bug-class in the kernel, entirely, even if there is some minor
redundancy. Better to have explicit case-ending statements than continue to
have exceptions where one must guess as to the right result. The compiler
will eliminate any actual redundancy.

Note that there is already a patch in mainline that addresses almost
40,000 of these issues[6].

I'm happy to carry this whole series in my own tree if people are OK
with it. :)

[1] commit e2079e93f562c ("kbuild: Do not enable -Wimplicit-fallthrough for clang for now")
[2] ClangBuiltLinux#636
[3] https://gcc.gnu.org/bugzilla/show_bug.cgi?id=91432
[4] https://godbolt.org/z/xgkvIh
[5] commit a035d552a93b ("Makefile: Globally enable fall-through warning")
[6] commit 4169e889e588 ("include: jhash/signal: Fix fall-through warnings for Clang")

Thanks!

Gustavo A. R. Silva (141):
  afs: Fix fall-through warnings for Clang
  ASoC: codecs: Fix fall-through warnings for Clang
  cifs: Fix fall-through warnings for Clang
  drm/amdgpu: Fix fall-through warnings for Clang
  drm/radeon: Fix fall-through warnings for Clang
  gfs2: Fix fall-through warnings for Clang
  gpio: Fix fall-through warnings for Clang
  IB/hfi1: Fix fall-through warnings for Clang
  igb: Fix fall-through warnings for Clang
  ima: Fix fall-through warnings for Clang
  ipv4: Fix fall-through warnings for Clang
  ixgbe: Fix fall-through warnings for Clang
  media: dvb-frontends: Fix fall-through warnings for Clang
  media: usb: dvb-usb-v2: Fix fall-through warnings for Clang
  netfilter: Fix fall-through warnings for Clang
  nfsd: Fix fall-through warnings for Clang
  nfs: Fix fall-through warnings for Clang
  qed: Fix fall-through warnings for Clang
  qlcnic: Fix fall-through warnings for Clang
  scsi: aic7xxx: Fix fall-through warnings for Clang
  scsi: aic94xx: Fix fall-through warnings for Clang
  scsi: bfa: Fix fall-through warnings for Clang
  staging: rtl8723bs: core: Fix fall-through warnings for Clang
  staging: vt6655: Fix fall-through warnings for Clang
  bnxt_en: Fix fall-through warnings for Clang
  ceph: Fix fall-through warnings for Clang
  drbd: Fix fall-through warnings for Clang
  drm/amd/display: Fix fall-through warnings for Clang
  e1000: Fix fall-through warnings for Clang
  ext2: Fix fall-through warnings for Clang
  ext4: Fix fall-through warnings for Clang
  floppy: Fix fall-through warnings for Clang
  fm10k: Fix fall-through warnings for Clang
  IB/mlx4: Fix fall-through warnings for Clang
  IB/qedr: Fix fall-through warnings for Clang
  ice: Fix fall-through warnings for Clang
  Input: pcspkr - Fix fall-through warnings for Clang
  isofs: Fix fall-through warnings for Clang
  ixgbevf: Fix fall-through warnings for Clang
  kprobes/x86: Fix fall-through warnings for Clang
  mm: Fix fall-through warnings for Clang
  net: 3c509: Fix fall-through warnings for Clang
  net: cassini: Fix fall-through warnings for Clang
  net/mlx4: Fix fall-through warnings for Clang
  net: mscc: ocelot: Fix fall-through warnings for Clang
  netxen_nic: Fix fall-through warnings for Clang
  nfp: Fix fall-through warnings for Clang
  perf/x86: Fix fall-through warnings for Clang
  pinctrl: Fix fall-through warnings for Clang
  RDMA/mlx5: Fix fall-through warnings for Clang
  reiserfs: Fix fall-through warnings for Clang
  security: keys: Fix fall-through warnings for Clang
  selinux: Fix fall-through warnings for Clang
  target: Fix fall-through warnings for Clang
  uprobes/x86: Fix fall-through warnings for Clang
  vxge: Fix fall-through warnings for Clang
  watchdog: Fix fall-through warnings for Clang
  xen-blkfront: Fix fall-through warnings for Clang
  regulator: as3722: Fix fall-through warnings for Clang
  habanalabs: Fix fall-through warnings for Clang
  tee: Fix fall-through warnings for Clang
  HID: usbhid: Fix fall-through warnings for Clang
  HID: input: Fix fall-through warnings for Clang
  ACPI: Fix fall-through warnings for Clang
  airo: Fix fall-through warnings for Clang
  ALSA: hdspm: Fix fall-through warnings for Clang
  ALSA: pcsp: Fix fall-through warnings for Clang
  ALSA: sb: Fix fall-through warnings for Clang
  ath5k: Fix fall-through warnings for Clang
  atm: fore200e: Fix fall-through warnings for Clang
  braille_console: Fix fall-through warnings for Clang
  can: peak_usb: Fix fall-through warnings for Clang
  carl9170: Fix fall-through warnings for Clang
  cfg80211: Fix fall-through warnings for Clang
  crypto: ccree - Fix fall-through warnings for Clang
  decnet: Fix fall-through warnings for Clang
  dm raid: Fix fall-through warnings for Clang
  drm/amd/pm: Fix fall-through warnings for Clang
  drm: Fix fall-through warnings for Clang
  drm/i915/gem: Fix fall-through warnings for Clang
  drm/nouveau/clk: Fix fall-through warnings for Clang
  drm/nouveau: Fix fall-through warnings for Clang
  drm/nouveau/therm: Fix fall-through warnings for Clang
  drm/via: Fix fall-through warnings for Clang
  firewire: core: Fix fall-through warnings for Clang
  hwmon: (corsair-cpro) Fix fall-through warnings for Clang
  hwmon: (max6621) Fix fall-through warnings for Clang
  i3c: master: cdns: Fix fall-through warnings for Clang
  ide: Fix fall-through warnings for Clang
  iio: adc: cpcap: Fix fall-through warnings for Clang
  iwlwifi: iwl-drv: Fix fall-through warnings for Clang
  libata: Fix fall-through warnings for Clang
  mac80211: Fix fall-through warnings for Clang
  media: atomisp: Fix fall-through warnings for Clang
  media: dvb_frontend: Fix fall-through warnings for Clang
  media: rcar_jpu: Fix fall-through warnings for Clang
  media: saa7134: Fix fall-through warnings for Clang
  mmc: sdhci-of-arasan: Fix fall-through warnings for Clang
  mt76: mt7615: Fix fall-through warnings for Clang
  mtd: cfi: Fix fall-through warnings for Clang
  mtd: mtdchar: Fix fall-through warnings for Clang
  mtd: onenand: Fix fall-through warnings for Clang
  mtd: rawnand: fsmc: Fix fall-through warnings for Clang
  mtd: rawnand: stm32_fmc2: Fix fall-through warnings for Clang
  net: ax25: Fix fall-through warnings for Clang
  net: bridge: Fix fall-through warnings for Clang
  net: core: Fix fall-through warnings for Clang
  netfilter: ipt_REJECT: Fix fall-through warnings for Clang
  net: netrom: Fix fall-through warnings for Clang
  net/packet: Fix fall-through warnings for Clang
  net: plip: Fix fall-through warnings for Clang
  net: rose: Fix fall-through warnings for Clang
  nl80211: Fix fall-through warnings for Clang
  phy: qcom-usb-hs: Fix fall-through warnings for Clang
  rds: Fix fall-through warnings for Clang
  rt2x00: Fix fall-through warnings for Clang
  rtl8xxxu: Fix fall-through warnings for Clang
  rtw88: Fix fall-through warnings for Clang
  rxrpc: Fix fall-through warnings for Clang
  scsi: aacraid: Fix fall-through warnings for Clang
  scsi: aha1740: Fix fall-through warnings for Clang
  scsi: csiostor: Fix fall-through warnings for Clang
  scsi: lpfc: Fix fall-through warnings for Clang
  scsi: stex: Fix fall-through warnings for Clang
  sctp: Fix fall-through warnings for Clang
  slimbus: messaging: Fix fall-through warnings for Clang
  staging: qlge: Fix fall-through warnings for Clang
  staging: vt6656: Fix fall-through warnings for Clang
  SUNRPC: Fix fall-through warnings for Clang
  tipc: Fix fall-through warnings for Clang
  tpm: Fix fall-through warnings for Clang
  ubi: Fix fall-through warnings for Clang
  usb: Fix fall-through warnings for Clang
  video: fbdev: lxfb_ops: Fix fall-through warnings for Clang
  video: fbdev: pm2fb: Fix fall-through warnings for Clang
  virtio_net: Fix fall-through warnings for Clang
  wcn36xx: Fix fall-through warnings for Clang
  xen/manage: Fix fall-through warnings for Clang
  xfrm: Fix fall-through warnings for Clang
  zd1201: Fix fall-through warnings for Clang
  Input: libps2 - Fix fall-through warnings for Clang

 arch/x86/events/core.c                                    | 2 +-
 arch/x86/kernel/kprobes/core.c                            | 1 +
 arch/x86/kernel/uprobes.c                                 | 2 ++
 drivers/accessibility/braille/braille_console.c           | 1 +
 drivers/acpi/sbshc.c                                      | 1 +
 drivers/ata/libata-eh.c                                   | 1 +
 drivers/atm/fore200e.c                                    | 1 +
 drivers/block/drbd/drbd_receiver.c                        | 1 +
 drivers/block/drbd/drbd_req.c                             | 1 +
 drivers/block/floppy.c                                    | 1 +
 drivers/block/xen-blkfront.c                              | 1 +
 drivers/char/tpm/eventlog/tpm1.c                          | 1 +
 drivers/crypto/ccree/cc_cipher.c                          | 3 +++
 drivers/firewire/core-topology.c                          | 1 +
 drivers/gpio/gpio-ath79.c                                 | 1 +
 drivers/gpio/gpiolib-acpi.c                               | 1 +
 drivers/gpu/drm/amd/amdgpu/gfx_v10_0.c                    | 1 +
 drivers/gpu/drm/amd/amdgpu/gfx_v9_0.c                     | 1 +
 drivers/gpu/drm/amd/amdgpu/gmc_v9_0.c                     | 1 +
 drivers/gpu/drm/amd/amdgpu/vi.c                           | 1 +
 drivers/gpu/drm/amd/display/dc/bios/bios_parser.c         | 1 +
 drivers/gpu/drm/amd/display/dc/bios/bios_parser2.c        | 2 ++
 drivers/gpu/drm/amd/display/dc/core/dc_link.c             | 1 +
 drivers/gpu/drm/amd/pm/powerplay/si_dpm.c                 | 2 +-
 .../gpu/drm/amd/pm/powerplay/smumgr/polaris10_smumgr.c    | 1 +
 drivers/gpu/drm/drm_bufs.c                                | 1 +
 drivers/gpu/drm/i915/gem/i915_gem_shrinker.c              | 1 +
 drivers/gpu/drm/nouveau/nouveau_bo.c                      | 1 +
 drivers/gpu/drm/nouveau/nouveau_connector.c               | 1 +
 drivers/gpu/drm/nouveau/nvkm/subdev/clk/nv50.c            | 1 +
 drivers/gpu/drm/nouveau/nvkm/subdev/therm/gf119.c         | 1 +
 drivers/gpu/drm/radeon/ci_dpm.c                           | 2 +-
 drivers/gpu/drm/radeon/r300.c                             | 1 +
 drivers/gpu/drm/radeon/si_dpm.c                           | 2 +-
 drivers/gpu/drm/via/via_irq.c                             | 1 +
 drivers/hid/hid-input.c                                   | 1 +
 drivers/hid/usbhid/hid-core.c                             | 2 ++
 drivers/hwmon/corsair-cpro.c                              | 1 +
 drivers/hwmon/max6621.c                                   | 2 +-
 drivers/i3c/master/i3c-master-cdns.c                      | 2 ++
 drivers/ide/siimage.c                                     | 1 +
 drivers/iio/adc/cpcap-adc.c                               | 1 +
 drivers/infiniband/hw/hfi1/qp.c                           | 1 +
 drivers/infiniband/hw/hfi1/tid_rdma.c                     | 5 +++++
 drivers/infiniband/hw/mlx4/mad.c                          | 1 +
 drivers/infiniband/hw/mlx5/qp.c                           | 1 +
 drivers/infiniband/hw/qedr/main.c                         | 1 +
 drivers/input/misc/pcspkr.c                               | 1 +
 drivers/input/serio/libps2.c                              | 2 +-
 drivers/md/dm-raid.c                                      | 1 +
 drivers/media/dvb-core/dvb_frontend.c                     | 1 +
 drivers/media/dvb-frontends/cx24120.c                     | 1 +
 drivers/media/dvb-frontends/dib0090.c                     | 2 ++
 drivers/media/dvb-frontends/drxk_hard.c                   | 1 +
 drivers/media/dvb-frontends/m88rs2000.c                   | 1 +
 drivers/media/pci/saa7134/saa7134-tvaudio.c               | 1 +
 drivers/media/platform/rcar_jpu.c                         | 1 +
 drivers/media/usb/dvb-usb-v2/af9015.c                     | 1 +
 drivers/media/usb/dvb-usb-v2/lmedm04.c                    | 1 +
 drivers/misc/habanalabs/gaudi/gaudi.c                     | 1 +
 drivers/mmc/host/sdhci-of-arasan.c                        | 4 ++++
 drivers/mtd/chips/cfi_cmdset_0001.c                       | 1 +
 drivers/mtd/chips/cfi_cmdset_0002.c                       | 2 ++
 drivers/mtd/chips/cfi_cmdset_0020.c                       | 2 ++
 drivers/mtd/mtdchar.c                                     | 1 +
 drivers/mtd/nand/onenand/onenand_samsung.c                | 1 +
 drivers/mtd/nand/raw/fsmc_nand.c                          | 1 +
 drivers/mtd/nand/raw/stm32_fmc2_nand.c                    | 2 ++
 drivers/mtd/ubi/build.c                                   | 1 +
 drivers/net/can/usb/peak_usb/pcan_usb_core.c              | 2 ++
 drivers/net/ethernet/3com/3c509.c                         | 1 +
 drivers/net/ethernet/broadcom/bnxt/bnxt.c                 | 1 +
 drivers/net/ethernet/intel/e1000/e1000_hw.c               | 1 +
 drivers/net/ethernet/intel/fm10k/fm10k_mbx.c              | 2 ++
 drivers/net/ethernet/intel/ice/ice_txrx_lib.c             | 1 +
 drivers/net/ethernet/intel/igb/e1000_phy.c                | 1 +
 drivers/net/ethernet/intel/igb/igb_ethtool.c              | 1 +
 drivers/net/ethernet/intel/igb/igb_ptp.c                  | 1 +
 drivers/net/ethernet/intel/ixgbe/ixgbe_82599.c            | 2 ++
 drivers/net/ethernet/intel/ixgbe/ixgbe_common.c           | 1 +
 drivers/net/ethernet/intel/ixgbe/ixgbe_lib.c              | 1 +
 drivers/net/ethernet/intel/ixgbe/ixgbe_ptp.c              | 1 +
 drivers/net/ethernet/intel/ixgbevf/ixgbevf_main.c         | 1 +
 drivers/net/ethernet/mellanox/mlx4/resource_tracker.c     | 1 +
 drivers/net/ethernet/mscc/ocelot_vcap.c                   | 1 +
 drivers/net/ethernet/neterion/vxge/vxge-config.c          | 1 +
 drivers/net/ethernet/netronome/nfp/nfp_net_repr.c         | 1 +
 drivers/net/ethernet/qlogic/netxen/netxen_nic_init.c      | 1 +
 drivers/net/ethernet/qlogic/qed/qed_l2.c                  | 1 +
 drivers/net/ethernet/qlogic/qed/qed_sriov.c               | 1 +
 drivers/net/ethernet/qlogic/qlcnic/qlcnic_io.c            | 1 +
 drivers/net/ethernet/qlogic/qlcnic/qlcnic_main.c          | 1 +
 drivers/net/ethernet/sun/cassini.c                        | 1 +
 drivers/net/plip/plip.c                                   | 2 ++
 drivers/net/virtio_net.c                                  | 1 +
 drivers/net/wireless/ath/ath5k/mac80211-ops.c             | 1 +
 drivers/net/wireless/ath/carl9170/tx.c                    | 1 +
 drivers/net/wireless/ath/wcn36xx/smd.c                    | 2 +-
 drivers/net/wireless/cisco/airo.c                         | 1 +
 drivers/net/wireless/intel/iwlwifi/iwl-drv.c              | 2 +-
 drivers/net/wireless/mediatek/mt76/mt7615/eeprom.c        | 2 +-
 drivers/net/wireless/ralink/rt2x00/rt2x00queue.c          | 1 +
 drivers/net/wireless/realtek/rtl8xxxu/rtl8xxxu_core.c     | 8 ++++----
 drivers/net/wireless/realtek/rtw88/fw.c                   | 2 +-
 drivers/net/wireless/zydas/zd1201.c                       | 2 +-
 drivers/phy/qualcomm/phy-qcom-usb-hs.c                    | 1 +
 drivers/pinctrl/renesas/pinctrl-rza1.c                    | 1 +
 drivers/regulator/as3722-regulator.c                      | 3 ++-
 drivers/scsi/aacraid/commsup.c                            | 1 +
 drivers/scsi/aha1740.c                                    | 1 +
 drivers/scsi/aic7xxx/aic79xx_core.c                       | 4 +++-
 drivers/scsi/aic7xxx/aic7xxx_core.c                       | 4 ++--
 drivers/scsi/aic94xx/aic94xx_scb.c                        | 2 ++
 drivers/scsi/aic94xx/aic94xx_task.c                       | 2 ++
 drivers/scsi/bfa/bfa_fcs_lport.c                          | 2 +-
 drivers/scsi/bfa/bfa_ioc.c                                | 6 ++++--
 drivers/scsi/csiostor/csio_wr.c                           | 1 +
 drivers/scsi/lpfc/lpfc_bsg.c                              | 1 +
 drivers/scsi/stex.c                                       | 1 +
 drivers/slimbus/messaging.c                               | 1 +
 drivers/staging/media/atomisp/pci/runtime/isys/src/rx.c   | 1 +
 drivers/staging/qlge/qlge_main.c                          | 1 +
 drivers/staging/rtl8723bs/core/rtw_cmd.c                  | 1 +
 drivers/staging/rtl8723bs/core/rtw_mlme_ext.c             | 1 +
 drivers/staging/rtl8723bs/core/rtw_wlan_util.c            | 1 +
 drivers/staging/vt6655/device_main.c                      | 1 +
 drivers/staging/vt6655/rxtx.c                             | 2 ++
 drivers/staging/vt6656/main_usb.c                         | 1 +
 drivers/target/target_core_iblock.c                       | 1 +
 drivers/target/target_core_pr.c                           | 1 +
 drivers/tee/tee_core.c                                    | 1 +
 drivers/usb/gadget/function/f_fs.c                        | 2 ++
 drivers/usb/gadget/function/f_loopback.c                  | 2 +-
 drivers/usb/gadget/function/f_sourcesink.c                | 1 +
 drivers/usb/gadget/udc/dummy_hcd.c                        | 2 ++
 drivers/usb/host/fotg210-hcd.c                            | 2 +-
 drivers/usb/host/isp116x-hcd.c                            | 1 +
 drivers/usb/host/max3421-hcd.c                            | 1 +
 drivers/usb/host/oxu210hp-hcd.c                           | 1 +
 drivers/usb/misc/yurex.c                                  | 1 +
 drivers/usb/musb/tusb6010.c                               | 1 +
 drivers/usb/storage/ene_ub6250.c                          | 1 +
 drivers/usb/storage/uas.c                                 | 1 +
 drivers/video/fbdev/geode/lxfb_ops.c                      | 1 +
 drivers/video/fbdev/pm2fb.c                               | 1 +
 drivers/watchdog/machzwd.c                                | 1 +
 drivers/xen/manage.c                                      | 1 +
 fs/afs/cmservice.c                                        | 5 +++++
 fs/afs/fsclient.c                                         | 4 ++++
 fs/afs/vlclient.c                                         | 1 +
 fs/ceph/dir.c                                             | 2 ++
 fs/cifs/inode.c                                           | 1 +
 fs/cifs/sess.c                                            | 1 +
 fs/cifs/smbdirect.c                                       | 1 +
 fs/ext2/inode.c                                           | 1 +
 fs/ext4/super.c                                           | 1 +
 fs/gfs2/inode.c                                           | 2 ++
 fs/gfs2/recovery.c                                        | 1 +
 fs/isofs/rock.c                                           | 1 +
 fs/nfs/nfs3acl.c                                          | 1 +
 fs/nfs/nfs4client.c                                       | 1 +
 fs/nfs/nfs4proc.c                                         | 2 ++
 fs/nfs/nfs4state.c                                        | 1 +
 fs/nfs/pnfs.c                                             | 2 ++
 fs/nfsd/nfs4state.c                                       | 1 +
 fs/nfsd/nfsctl.c                                          | 1 +
 fs/reiserfs/namei.c                                       | 1 +
 mm/mm_init.c                                              | 1 +
 mm/vmscan.c                                               | 1 +
 net/ax25/af_ax25.c                                        | 1 +
 net/bridge/br_input.c                                     | 1 +
 net/core/dev.c                                            | 1 +
 net/decnet/dn_route.c                                     | 2 +-
 net/ipv4/ah4.c                                            | 1 +
 net/ipv4/esp4.c                                           | 1 +
 net/ipv4/fib_semantics.c                                  | 1 +
 net/ipv4/ip_vti.c                                         | 1 +
 net/ipv4/ipcomp.c                                         | 1 +
 net/ipv4/netfilter/ipt_REJECT.c                           | 1 +
 net/mac80211/cfg.c                                        | 2 ++
 net/netfilter/nf_conntrack_proto_dccp.c                   | 1 +
 net/netfilter/nf_tables_api.c                             | 1 +
 net/netfilter/nft_ct.c                                    | 1 +
 net/netrom/nr_route.c                                     | 4 ++++
 net/packet/af_packet.c                                    | 1 +
 net/rds/tcp_connect.c                                     | 1 +
 net/rds/threads.c                                         | 2 ++
 net/rose/rose_route.c                                     | 2 ++
 net/rxrpc/af_rxrpc.c                                      | 1 +
 net/sctp/input.c                                          | 3 ++-
 net/sunrpc/rpc_pipe.c                                     | 1 +
 net/sunrpc/xprtsock.c                                     | 1 +
 net/tipc/link.c                                           | 1 +
 net/wireless/nl80211.c                                    | 1 +
 net/wireless/util.c                                       | 1 +
 net/xfrm/xfrm_interface.c                                 | 1 +
 security/integrity/ima/ima_main.c                         | 1 +
 security/integrity/ima/ima_policy.c                       | 2 ++
 security/keys/process_keys.c                              | 1 +
 security/selinux/hooks.c                                  | 1 +
 sound/drivers/pcsp/pcsp_input.c                           | 1 +
 sound/isa/sb/sb8_main.c                                   | 1 +
 sound/pci/rme9652/hdspm.c                                 | 1 +
 sound/soc/codecs/adav80x.c                                | 1 +
 sound/soc/codecs/arizona.c                                | 1 +
 sound/soc/codecs/cs42l52.c                                | 1 +
 sound/soc/codecs/cs42l56.c                                | 1 +
 sound/soc/codecs/cs47l92.c                                | 1 +
 sound/soc/codecs/wm8962.c                                 | 1 +
 209 files changed, 264 insertions(+), 26 deletions(-)

-- 
2.27.0


^ permalink raw reply	[flat|nested] 73+ messages in thread

* Re: [PATCH 000/141] Fix fall-through warnings for Clang
  2020-11-20 18:21 [PATCH 000/141] Fix fall-through warnings for Clang Gustavo A. R. Silva
@ 2020-11-20 18:28 ` Joe Perches
  2020-11-20 19:02   ` Gustavo A. R. Silva
  2020-11-20 18:32 ` [PATCH 057/141] watchdog: " Gustavo A. R. Silva
                   ` (6 subsequent siblings)
  7 siblings, 1 reply; 73+ messages in thread
From: Joe Perches @ 2020-11-20 18:28 UTC (permalink / raw)
  To: Gustavo A. R. Silva, linux-kernel
  Cc: alsa-devel, amd-gfx, bridge, ceph-devel, cluster-devel, coreteam,
	devel, dm-devel, drbd-dev, dri-devel, GR-everest-linux-l2,
	GR-Linux-NIC-Dev, intel-gfx, intel-wired-lan, keyrings,
	linux1394-devel, linux-acpi, linux-afs, linux-arm-kernel,
	linux-arm-msm, linux-atm-general, linux-block, linux-can,
	linux-cifs, linux-crypto, linux-decnet-user, linux-ext4,
	linux-fbdev, linux-geode, linux-gpio, linux-hams, linux-hwmon,
	linux-i3c, linux-ide, linux-iio, linux-input, linux-integrity,
	linux-mediatek, linux-media, linux-mmc, linux-mm, linux-mtd,
	linux-nfs, linux-rdma, linux-renesas-soc, linux-scsi, linux-sctp,
	linux-security-module, linux-stm32, linux-usb, linux-watchdog,
	linux-wireless, netdev, netfilter-devel, nouveau, op-tee,
	oss-drivers, patches, rds-devel, reiserfs-devel, samba-technical,
	selinux, target-devel, tipc-discussion, usb-storage,
	virtualization, wcn36xx, x86, xen-devel, linux-hardening,
	Nick Desaulniers, Nathan Chancellor, Miguel Ojeda, Kees Cook

On Fri, 2020-11-20 at 12:21 -0600, Gustavo A. R. Silva wrote:
> Hi all,
> 
> This series aims to fix almost all remaining fall-through warnings in
> order to enable -Wimplicit-fallthrough for Clang.
> 
> In preparation to enable -Wimplicit-fallthrough for Clang, explicitly
> add multiple break/goto/return/fallthrough statements instead of just
> letting the code fall through to the next case.
> 
> Notice that in order to enable -Wimplicit-fallthrough for Clang, this
> change[1] is meant to be reverted at some point. So, this patch helps
> to move in that direction.

This was a bit hard to parse for a second or three.

Thanks Gustavo.

How was this change done?



^ permalink raw reply	[flat|nested] 73+ messages in thread

* [PATCH 057/141] watchdog: Fix fall-through warnings for Clang
  2020-11-20 18:21 [PATCH 000/141] Fix fall-through warnings for Clang Gustavo A. R. Silva
  2020-11-20 18:28 ` Joe Perches
@ 2020-11-20 18:32 ` Gustavo A. R. Silva
  2020-11-21 18:49   ` Guenter Roeck
                     ` (2 more replies)
  2020-11-20 18:53 ` [PATCH 000/141] " Jakub Kicinski
                   ` (5 subsequent siblings)
  7 siblings, 3 replies; 73+ messages in thread
From: Gustavo A. R. Silva @ 2020-11-20 18:32 UTC (permalink / raw)
  To: Wim Van Sebroeck, Guenter Roeck
  Cc: linux-watchdog, linux-kernel, linux-hardening, Gustavo A. R. Silva

In preparation to enable -Wimplicit-fallthrough for Clang, fix a warning
by explicitly adding a fallthrough pseudo-keyword instead of letting the
code fall through to the next case.

Link: https://github.com/KSPP/linux/issues/115
Signed-off-by: Gustavo A. R. Silva <gustavoars@kernel.org>
---
 drivers/watchdog/machzwd.c | 1 +
 1 file changed, 1 insertion(+)

diff --git a/drivers/watchdog/machzwd.c b/drivers/watchdog/machzwd.c
index 743377c5b173..73f2221f6222 100644
--- a/drivers/watchdog/machzwd.c
+++ b/drivers/watchdog/machzwd.c
@@ -174,6 +174,7 @@ static inline void zf_set_timer(unsigned short new, unsigned char n)
 		fallthrough;
 	case WD2:
 		zf_writeb(COUNTER_2, new > 0xff ? 0xff : new);
+		fallthrough;
 	default:
 		return;
 	}
-- 
2.27.0


^ permalink raw reply related	[flat|nested] 73+ messages in thread

* Re: [PATCH 000/141] Fix fall-through warnings for Clang
  2020-11-20 18:21 [PATCH 000/141] Fix fall-through warnings for Clang Gustavo A. R. Silva
  2020-11-20 18:28 ` Joe Perches
  2020-11-20 18:32 ` [PATCH 057/141] watchdog: " Gustavo A. R. Silva
@ 2020-11-20 18:53 ` Jakub Kicinski
  2020-11-20 19:04   ` Gustavo A. R. Silva
  2020-11-20 19:30   ` Kees Cook
  2020-11-20 22:21 ` Miguel Ojeda
                   ` (4 subsequent siblings)
  7 siblings, 2 replies; 73+ messages in thread
From: Jakub Kicinski @ 2020-11-20 18:53 UTC (permalink / raw)
  To: Gustavo A. R. Silva
  Cc: linux-kernel, alsa-devel, amd-gfx, bridge, ceph-devel,
	cluster-devel, coreteam, devel, dm-devel, drbd-dev, dri-devel,
	GR-everest-linux-l2, GR-Linux-NIC-Dev, intel-gfx,
	intel-wired-lan, keyrings, linux1394-devel, linux-acpi,
	linux-afs, linux-arm-kernel, linux-arm-msm, linux-atm-general,
	linux-block, linux-can, linux-cifs, linux-crypto,
	linux-decnet-user, linux-ext4, linux-fbdev, linux-geode,
	linux-gpio, linux-hams, linux-hwmon, linux-i3c, linux-ide,
	linux-iio, linux-input, linux-integrity, linux-mediatek,
	linux-media, linux-mmc, linux-mm, linux-mtd, linux-nfs,
	linux-rdma, linux-renesas-soc, linux-scsi, linux-sctp,
	linux-security-module, linux-stm32, linux-usb, linux-watchdog,
	linux-wireless, netdev, netfilter-devel, nouveau, op-tee,
	oss-drivers, patches, rds-devel, reiserfs-devel, samba-technical,
	selinux, target-devel, tipc-discussion, usb-storage,
	virtualization, wcn36xx, x86, xen-devel, linux-hardening,
	Nick Desaulniers, Nathan Chancellor, Miguel Ojeda, Joe Perches,
	Kees Cook

On Fri, 20 Nov 2020 12:21:39 -0600 Gustavo A. R. Silva wrote:
> This series aims to fix almost all remaining fall-through warnings in
> order to enable -Wimplicit-fallthrough for Clang.
> 
> In preparation to enable -Wimplicit-fallthrough for Clang, explicitly
> add multiple break/goto/return/fallthrough statements instead of just
> letting the code fall through to the next case.
> 
> Notice that in order to enable -Wimplicit-fallthrough for Clang, this
> change[1] is meant to be reverted at some point. So, this patch helps
> to move in that direction.
> 
> Something important to mention is that there is currently a discrepancy
> between GCC and Clang when dealing with switch fall-through to empty case
> statements or to cases that only contain a break/continue/return
> statement[2][3][4].

Are we sure we want to make this change? Was it discussed before?

Are there any bugs Clangs puritanical definition of fallthrough helped
find?

IMVHO compiler warnings are supposed to warn about issues that could
be bugs. Falling through to default: break; can hardly be a bug?!

^ permalink raw reply	[flat|nested] 73+ messages in thread

* Re: [PATCH 000/141] Fix fall-through warnings for Clang
  2020-11-20 18:28 ` Joe Perches
@ 2020-11-20 19:02   ` Gustavo A. R. Silva
  0 siblings, 0 replies; 73+ messages in thread
From: Gustavo A. R. Silva @ 2020-11-20 19:02 UTC (permalink / raw)
  To: Joe Perches, Gustavo A. R. Silva, linux-kernel
  Cc: alsa-devel, amd-gfx, bridge, ceph-devel, cluster-devel, coreteam,
	devel, dm-devel, drbd-dev, dri-devel, GR-everest-linux-l2,
	GR-Linux-NIC-Dev, intel-gfx, intel-wired-lan, keyrings,
	linux1394-devel, linux-acpi, linux-afs, linux-arm-kernel,
	linux-arm-msm, linux-atm-general, linux-block, linux-can,
	linux-cifs, linux-crypto, linux-decnet-user, linux-ext4,
	linux-fbdev, linux-geode, linux-gpio, linux-hams, linux-hwmon,
	linux-i3c, linux-ide, linux-iio, linux-input, linux-integrity,
	linux-mediatek, linux-media, linux-mmc, linux-mm, linux-mtd,
	linux-nfs, linux-rdma, linux-renesas-soc, linux-scsi, linux-sctp,
	linux-security-module, linux-stm32, linux-usb, linux-watchdog,
	linux-wireless, netdev, netfilter-devel, nouveau, op-tee,
	oss-drivers, patches, rds-devel, reiserfs-devel, samba-technical,
	selinux, target-devel, tipc-discussion, usb-storage,
	virtualization, wcn36xx, x86, xen-devel, linux-hardening,
	Nick Desaulniers, Nathan Chancellor, Miguel Ojeda, Kees Cook



On 11/20/20 12:28, Joe Perches wrote:
> On Fri, 2020-11-20 at 12:21 -0600, Gustavo A. R. Silva wrote:
>> Hi all,
>>
>> This series aims to fix almost all remaining fall-through warnings in
>> order to enable -Wimplicit-fallthrough for Clang.
>>
>> In preparation to enable -Wimplicit-fallthrough for Clang, explicitly
>> add multiple break/goto/return/fallthrough statements instead of just
>> letting the code fall through to the next case.
>>
>> Notice that in order to enable -Wimplicit-fallthrough for Clang, this
>> change[1] is meant to be reverted at some point. So, this patch helps
>> to move in that direction.
> 
> This was a bit hard to parse for a second or three.
> 
> Thanks Gustavo.
> 
> How was this change done?

I audited case by case in order to determine the best fit for each
situation. Depending on the surrounding logic, sometimes it makes
more sense a goto or a fallthrough rather than merely a break.

Thanks
--
Gustavo

^ permalink raw reply	[flat|nested] 73+ messages in thread

* Re: [PATCH 000/141] Fix fall-through warnings for Clang
  2020-11-20 18:53 ` [PATCH 000/141] " Jakub Kicinski
@ 2020-11-20 19:04   ` Gustavo A. R. Silva
  2020-11-20 19:30   ` Kees Cook
  1 sibling, 0 replies; 73+ messages in thread
From: Gustavo A. R. Silva @ 2020-11-20 19:04 UTC (permalink / raw)
  To: Jakub Kicinski, Gustavo A. R. Silva
  Cc: linux-kernel, alsa-devel, amd-gfx, bridge, ceph-devel,
	cluster-devel, coreteam, devel, dm-devel, drbd-dev, dri-devel,
	GR-everest-linux-l2, GR-Linux-NIC-Dev, intel-gfx,
	intel-wired-lan, keyrings, linux1394-devel, linux-acpi,
	linux-afs, linux-arm-kernel, linux-arm-msm, linux-atm-general,
	linux-block, linux-can, linux-cifs, linux-crypto,
	linux-decnet-user, linux-ext4, linux-fbdev, linux-geode,
	linux-gpio, linux-hams, linux-hwmon, linux-i3c, linux-ide,
	linux-iio, linux-input, linux-integrity, linux-mediatek,
	linux-media, linux-mmc, linux-mm, linux-mtd, linux-nfs,
	linux-rdma, linux-renesas-soc, linux-scsi, linux-sctp,
	linux-security-module, linux-stm32, linux-usb, linux-watchdog,
	linux-wireless, netdev, netfilter-devel, nouveau, op-tee,
	oss-drivers, patches, rds-devel, reiserfs-devel, samba-technical,
	selinux, target-devel, tipc-discussion, usb-storage,
	virtualization, wcn36xx, x86, xen-devel, linux-hardening,
	Nick Desaulniers, Nathan Chancellor, Miguel Ojeda, Joe Perches,
	Kees Cook


Hi,

On 11/20/20 12:53, Jakub Kicinski wrote:
> On Fri, 20 Nov 2020 12:21:39 -0600 Gustavo A. R. Silva wrote:
>> This series aims to fix almost all remaining fall-through warnings in
>> order to enable -Wimplicit-fallthrough for Clang.
>>
>> In preparation to enable -Wimplicit-fallthrough for Clang, explicitly
>> add multiple break/goto/return/fallthrough statements instead of just
>> letting the code fall through to the next case.
>>
>> Notice that in order to enable -Wimplicit-fallthrough for Clang, this
>> change[1] is meant to be reverted at some point. So, this patch helps
>> to move in that direction.
>>
>> Something important to mention is that there is currently a discrepancy
>> between GCC and Clang when dealing with switch fall-through to empty case
>> statements or to cases that only contain a break/continue/return
>> statement[2][3][4].
> 
> Are we sure we want to make this change? Was it discussed before?
> 
> Are there any bugs Clangs puritanical definition of fallthrough helped
> find?
> 
> IMVHO compiler warnings are supposed to warn about issues that could
> be bugs. Falling through to default: break; can hardly be a bug?!

The justification for this is explained in this same changelog text:

Now that the -Wimplicit-fallthrough option has been globally enabled[5],
any compiler should really warn on missing either a fallthrough annotation
or any of the other case-terminating statements (break/continue/return/
goto) when falling through to the next case statement. Making exceptions
to this introduces variation in case handling which may continue to lead
to bugs, misunderstandings, and a general lack of robustness. The point
of enabling options like -Wimplicit-fallthrough is to prevent human error
and aid developers in spotting bugs before their code is even built/
submitted/committed, therefore eliminating classes of bugs. So, in order
to really accomplish this, we should, and can, move in the direction of
addressing any error-prone scenarios and get rid of the unintentional
fallthrough bug-class in the kernel, entirely, even if there is some minor
redundancy. Better to have explicit case-ending statements than continue to
have exceptions where one must guess as to the right result. The compiler
will eliminate any actual redundancy.

Note that there is already a patch in mainline that addresses almost
40,000 of these issues[6].

[1] commit e2079e93f562c ("kbuild: Do not enable -Wimplicit-fallthrough for clang for now")
[2] ClangBuiltLinux#636
[3] https://gcc.gnu.org/bugzilla/show_bug.cgi?id=91432
[4] https://godbolt.org/z/xgkvIh
[5] commit a035d552a93b ("Makefile: Globally enable fall-through warning")
[6] commit 4169e889e588 ("include: jhash/signal: Fix fall-through warnings for Clang")

Thanks
--
Gustavo

^ permalink raw reply	[flat|nested] 73+ messages in thread

* Re: [PATCH 000/141] Fix fall-through warnings for Clang
  2020-11-20 18:53 ` [PATCH 000/141] " Jakub Kicinski
  2020-11-20 19:04   ` Gustavo A. R. Silva
@ 2020-11-20 19:30   ` Kees Cook
  2020-11-20 19:51     ` Jakub Kicinski
  1 sibling, 1 reply; 73+ messages in thread
From: Kees Cook @ 2020-11-20 19:30 UTC (permalink / raw)
  To: Jakub Kicinski
  Cc: Gustavo A. R. Silva, linux-kernel, alsa-devel, amd-gfx, bridge,
	ceph-devel, cluster-devel, coreteam, devel, dm-devel, drbd-dev,
	dri-devel, GR-everest-linux-l2, GR-Linux-NIC-Dev, intel-gfx,
	intel-wired-lan, keyrings, linux1394-devel, linux-acpi,
	linux-afs, linux-arm-kernel, linux-arm-msm, linux-atm-general,
	linux-block, linux-can, linux-cifs, linux-crypto,
	linux-decnet-user, linux-ext4, linux-fbdev, linux-geode,
	linux-gpio, linux-hams, linux-hwmon, linux-i3c, linux-ide,
	linux-iio, linux-input, linux-integrity, linux-mediatek,
	linux-media, linux-mmc, linux-mm, linux-mtd, linux-nfs,
	linux-rdma, linux-renesas-soc, linux-scsi, linux-sctp,
	linux-security-module, linux-stm32, linux-usb, linux-watchdog,
	linux-wireless, netdev, netfilter-devel, nouveau, op-tee,
	oss-drivers, patches, rds-devel, reiserfs-devel, samba-technical,
	selinux, target-devel, tipc-discussion, usb-storage,
	virtualization, wcn36xx, x86, xen-devel, linux-hardening,
	Nick Desaulniers, Nathan Chancellor, Miguel Ojeda, Joe Perches

On Fri, Nov 20, 2020 at 10:53:44AM -0800, Jakub Kicinski wrote:
> On Fri, 20 Nov 2020 12:21:39 -0600 Gustavo A. R. Silva wrote:
> > This series aims to fix almost all remaining fall-through warnings in
> > order to enable -Wimplicit-fallthrough for Clang.
> > 
> > In preparation to enable -Wimplicit-fallthrough for Clang, explicitly
> > add multiple break/goto/return/fallthrough statements instead of just
> > letting the code fall through to the next case.
> > 
> > Notice that in order to enable -Wimplicit-fallthrough for Clang, this
> > change[1] is meant to be reverted at some point. So, this patch helps
> > to move in that direction.
> > 
> > Something important to mention is that there is currently a discrepancy
> > between GCC and Clang when dealing with switch fall-through to empty case
> > statements or to cases that only contain a break/continue/return
> > statement[2][3][4].
> 
> Are we sure we want to make this change? Was it discussed before?
> 
> Are there any bugs Clangs puritanical definition of fallthrough helped
> find?
> 
> IMVHO compiler warnings are supposed to warn about issues that could
> be bugs. Falling through to default: break; can hardly be a bug?!

It's certainly a place where the intent is not always clear. I think
this makes all the cases unambiguous, and doesn't impact the machine
code, since the compiler will happily optimize away any behavioral
redundancy.


-- 
Kees Cook

^ permalink raw reply	[flat|nested] 73+ messages in thread

* Re: [PATCH 000/141] Fix fall-through warnings for Clang
  2020-11-20 19:30   ` Kees Cook
@ 2020-11-20 19:51     ` Jakub Kicinski
  2020-11-20 20:48       ` Kees Cook
  2020-11-22 16:17       ` Kees Cook
  0 siblings, 2 replies; 73+ messages in thread
From: Jakub Kicinski @ 2020-11-20 19:51 UTC (permalink / raw)
  To: Kees Cook
  Cc: Gustavo A. R. Silva, linux-kernel, alsa-devel, amd-gfx, bridge,
	ceph-devel, cluster-devel, coreteam, devel, dm-devel, drbd-dev,
	dri-devel, GR-everest-linux-l2, GR-Linux-NIC-Dev, intel-gfx,
	intel-wired-lan, keyrings, linux1394-devel, linux-acpi,
	linux-afs, linux-arm-kernel, linux-arm-msm, linux-atm-general,
	linux-block, linux-can, linux-cifs, linux-crypto,
	linux-decnet-user, linux-ext4, linux-fbdev, linux-geode,
	linux-gpio, linux-hams, linux-hwmon, linux-i3c, linux-ide,
	linux-iio, linux-input, linux-integrity, linux-mediatek,
	linux-media, linux-mmc, linux-mm, linux-mtd, linux-nfs,
	linux-rdma, linux-renesas-soc, linux-scsi, linux-sctp,
	linux-security-module, linux-stm32, linux-usb, linux-watchdog,
	linux-wireless, netdev, netfilter-devel, nouveau, op-tee,
	oss-drivers, patches, rds-devel, reiserfs-devel, samba-technical,
	selinux, target-devel, tipc-discussion, usb-storage,
	virtualization, wcn36xx, x86, xen-devel, linux-hardening,
	Nick Desaulniers, Nathan Chancellor, Miguel Ojeda, Joe Perches

On Fri, 20 Nov 2020 11:30:40 -0800 Kees Cook wrote:
> On Fri, Nov 20, 2020 at 10:53:44AM -0800, Jakub Kicinski wrote:
> > On Fri, 20 Nov 2020 12:21:39 -0600 Gustavo A. R. Silva wrote:  
> > > This series aims to fix almost all remaining fall-through warnings in
> > > order to enable -Wimplicit-fallthrough for Clang.
> > > 
> > > In preparation to enable -Wimplicit-fallthrough for Clang, explicitly
> > > add multiple break/goto/return/fallthrough statements instead of just
> > > letting the code fall through to the next case.
> > > 
> > > Notice that in order to enable -Wimplicit-fallthrough for Clang, this
> > > change[1] is meant to be reverted at some point. So, this patch helps
> > > to move in that direction.
> > > 
> > > Something important to mention is that there is currently a discrepancy
> > > between GCC and Clang when dealing with switch fall-through to empty case
> > > statements or to cases that only contain a break/continue/return
> > > statement[2][3][4].  
> > 
> > Are we sure we want to make this change? Was it discussed before?
> > 
> > Are there any bugs Clangs puritanical definition of fallthrough helped
> > find?
> > 
> > IMVHO compiler warnings are supposed to warn about issues that could
> > be bugs. Falling through to default: break; can hardly be a bug?!  
> 
> It's certainly a place where the intent is not always clear. I think
> this makes all the cases unambiguous, and doesn't impact the machine
> code, since the compiler will happily optimize away any behavioral
> redundancy.

If none of the 140 patches here fix a real bug, and there is no change
to machine code then it sounds to me like a W=2 kind of a warning.

I think clang is just being annoying here, but if I'm the only one who
feels this way chances are I'm wrong :)

^ permalink raw reply	[flat|nested] 73+ messages in thread

* Re: [PATCH 000/141] Fix fall-through warnings for Clang
  2020-11-20 19:51     ` Jakub Kicinski
@ 2020-11-20 20:48       ` Kees Cook
  2020-11-22 16:17       ` Kees Cook
  1 sibling, 0 replies; 73+ messages in thread
From: Kees Cook @ 2020-11-20 20:48 UTC (permalink / raw)
  To: Jakub Kicinski
  Cc: Gustavo A. R. Silva, linux-kernel, alsa-devel, amd-gfx, bridge,
	ceph-devel, cluster-devel, coreteam, devel, dm-devel, drbd-dev,
	dri-devel, GR-everest-linux-l2, GR-Linux-NIC-Dev, intel-gfx,
	intel-wired-lan, keyrings, linux1394-devel, linux-acpi,
	linux-afs, linux-arm-kernel, linux-arm-msm, linux-atm-general,
	linux-block, linux-can, linux-cifs, linux-crypto,
	linux-decnet-user, linux-ext4, linux-fbdev, linux-geode,
	linux-gpio, linux-hams, linux-hwmon, linux-i3c, linux-ide,
	linux-iio, linux-input, linux-integrity, linux-mediatek,
	linux-media, linux-mmc, linux-mm, linux-mtd, linux-nfs,
	linux-rdma, linux-renesas-soc, linux-scsi, linux-sctp,
	linux-security-module, linux-stm32, linux-usb, linux-watchdog,
	linux-wireless, netdev, netfilter-devel, nouveau, op-tee,
	oss-drivers, patches, rds-devel, reiserfs-devel, samba-technical,
	selinux, target-devel, tipc-discussion, usb-storage,
	virtualization, wcn36xx, x86, xen-devel, linux-hardening,
	Nick Desaulniers, Nathan Chancellor, Miguel Ojeda, Joe Perches

On Fri, Nov 20, 2020 at 11:51:42AM -0800, Jakub Kicinski wrote:
> On Fri, 20 Nov 2020 11:30:40 -0800 Kees Cook wrote:
> > On Fri, Nov 20, 2020 at 10:53:44AM -0800, Jakub Kicinski wrote:
> > > On Fri, 20 Nov 2020 12:21:39 -0600 Gustavo A. R. Silva wrote:  
> > > > This series aims to fix almost all remaining fall-through warnings in
> > > > order to enable -Wimplicit-fallthrough for Clang.
> > > > 
> > > > In preparation to enable -Wimplicit-fallthrough for Clang, explicitly
> > > > add multiple break/goto/return/fallthrough statements instead of just
> > > > letting the code fall through to the next case.
> > > > 
> > > > Notice that in order to enable -Wimplicit-fallthrough for Clang, this
> > > > change[1] is meant to be reverted at some point. So, this patch helps
> > > > to move in that direction.
> > > > 
> > > > Something important to mention is that there is currently a discrepancy
> > > > between GCC and Clang when dealing with switch fall-through to empty case
> > > > statements or to cases that only contain a break/continue/return
> > > > statement[2][3][4].  
> > > 
> > > Are we sure we want to make this change? Was it discussed before?
> > > 
> > > Are there any bugs Clangs puritanical definition of fallthrough helped
> > > find?
> > > 
> > > IMVHO compiler warnings are supposed to warn about issues that could
> > > be bugs. Falling through to default: break; can hardly be a bug?!  
> > 
> > It's certainly a place where the intent is not always clear. I think
> > this makes all the cases unambiguous, and doesn't impact the machine
> > code, since the compiler will happily optimize away any behavioral
> > redundancy.
> 
> If none of the 140 patches here fix a real bug, and there is no change
> to machine code then it sounds to me like a W=2 kind of a warning.

I'd like to avoid splitting common -W options between default and W=2
just based on the compiler. Getting -Wimplicit-fallthrough enabled found
plenty of bugs, so making sure it works correctly for both compilers
feels justified to me. (This is just a subset of the same C language
short-coming.)

> I think clang is just being annoying here, but if I'm the only one who
> feels this way chances are I'm wrong :)

It's being pretty pedantic, but I don't think it's unreasonable to
explicitly state how every case ends. GCC's silence for the case of
"fall through to a break" doesn't really seem justified.

-- 
Kees Cook

^ permalink raw reply	[flat|nested] 73+ messages in thread

* Re: [PATCH 000/141] Fix fall-through warnings for Clang
  2020-11-20 18:21 [PATCH 000/141] Fix fall-through warnings for Clang Gustavo A. R. Silva
                   ` (2 preceding siblings ...)
  2020-11-20 18:53 ` [PATCH 000/141] " Jakub Kicinski
@ 2020-11-20 22:21 ` Miguel Ojeda
  2020-11-23 20:03 ` Jason Gunthorpe
                   ` (3 subsequent siblings)
  7 siblings, 0 replies; 73+ messages in thread
From: Miguel Ojeda @ 2020-11-20 22:21 UTC (permalink / raw)
  To: Gustavo A. R. Silva
  Cc: linux-kernel, alsa-devel, amd-gfx, bridge, ceph-devel,
	cluster-devel, coreteam, devel, dm-devel, drbd-dev, dri-devel,
	GR-everest-linux-l2, GR-Linux-NIC-Dev, intel-gfx,
	intel-wired-lan, keyrings, linux1394-devel, linux-acpi,
	linux-afs, Linux ARM, linux-arm-msm, linux-atm-general,
	linux-block, linux-can, linux-cifs, Linux Crypto Mailing List,
	linux-decnet-user, Ext4 Developers List, linux-fbdev,
	linux-geode, linux-gpio, linux-hams, linux-hwmon, linux-i3c,
	linux-ide, linux-iio, linux-input, linux-integrity,
	linux-mediatek, Linux Media Mailing List, linux-mmc, Linux-MM,
	linux-mtd, linux-nfs, linux-rdma, linux-renesas-soc, linux-scsi,
	linux-sctp, linux-security-module, linux-stm32, linux-usb,
	linux-watchdog, linux-wireless, Network Development,
	netfilter-devel, nouveau, op-tee, oss-drivers, patches,
	rds-devel, reiserfs-devel, samba-technical, selinux,
	target-devel, tipc-discussion, usb-storage, virtualization,
	wcn36xx, maintainer:X86 ARCHITECTURE (32-BIT AND 64-BIT),
	xen-devel, linux-hardening, Nick Desaulniers, Nathan Chancellor,
	Miguel Ojeda, Joe Perches, Kees Cook

Hi Gustavo,

On Fri, Nov 20, 2020 at 7:21 PM Gustavo A. R. Silva
<gustavoars@kernel.org> wrote:
>
> Hi all,
>
> This series aims to fix almost all remaining fall-through warnings in
> order to enable -Wimplicit-fallthrough for Clang.

Thanks for this.

Since this warning is reliable in both/all compilers and we are
eventually getting rid of all the cases, what about going even further
and making it an error right after?

Cheers,
Miguel

^ permalink raw reply	[flat|nested] 73+ messages in thread

* Re: [PATCH 057/141] watchdog: Fix fall-through warnings for Clang
  2020-11-20 18:32 ` [PATCH 057/141] watchdog: " Gustavo A. R. Silva
@ 2020-11-21 18:49   ` Guenter Roeck
  2020-11-23 22:50     ` Gustavo A. R. Silva
  2021-03-04 23:04   ` Gustavo A. R. Silva
  2021-05-17 23:54   ` Gustavo A. R. Silva
  2 siblings, 1 reply; 73+ messages in thread
From: Guenter Roeck @ 2020-11-21 18:49 UTC (permalink / raw)
  To: Gustavo A. R. Silva
  Cc: Wim Van Sebroeck, linux-watchdog, linux-kernel, linux-hardening

On Fri, Nov 20, 2020 at 12:32:51PM -0600, Gustavo A. R. Silva wrote:
> In preparation to enable -Wimplicit-fallthrough for Clang, fix a warning
> by explicitly adding a fallthrough pseudo-keyword instead of letting the
> code fall through to the next case.
> 
> Link: https://github.com/KSPP/linux/issues/115
> Signed-off-by: Gustavo A. R. Silva <gustavoars@kernel.org>
> ---
>  drivers/watchdog/machzwd.c | 1 +
>  1 file changed, 1 insertion(+)
> 
> diff --git a/drivers/watchdog/machzwd.c b/drivers/watchdog/machzwd.c
> index 743377c5b173..73f2221f6222 100644
> --- a/drivers/watchdog/machzwd.c
> +++ b/drivers/watchdog/machzwd.c
> @@ -174,6 +174,7 @@ static inline void zf_set_timer(unsigned short new, unsigned char n)
>  		fallthrough;
>  	case WD2:
>  		zf_writeb(COUNTER_2, new > 0xff ? 0xff : new);
> +		fallthrough;

fallthrough to return ? Oh well, this is an old style driver anyway,
so I guess who cares.

Acked-by: Guenter Roeck <linux@roeck-us.net>

Guenter

>  	default:
>  		return;
>  	}
> -- 
> 2.27.0
> 

^ permalink raw reply	[flat|nested] 73+ messages in thread

* Re: [PATCH 000/141] Fix fall-through warnings for Clang
  2020-11-20 19:51     ` Jakub Kicinski
  2020-11-20 20:48       ` Kees Cook
@ 2020-11-22 16:17       ` Kees Cook
  2020-11-22 18:21         ` James Bottomley
                           ` (2 more replies)
  1 sibling, 3 replies; 73+ messages in thread
From: Kees Cook @ 2020-11-22 16:17 UTC (permalink / raw)
  To: Jakub Kicinski
  Cc: Gustavo A. R. Silva, linux-kernel, alsa-devel, amd-gfx, bridge,
	ceph-devel, cluster-devel, coreteam, devel, dm-devel, drbd-dev,
	dri-devel, GR-everest-linux-l2, GR-Linux-NIC-Dev, intel-gfx,
	intel-wired-lan, keyrings, linux1394-devel, linux-acpi,
	linux-afs, linux-arm-kernel, linux-arm-msm, linux-atm-general,
	linux-block, linux-can, linux-cifs, linux-crypto,
	linux-decnet-user, linux-ext4, linux-fbdev, linux-geode,
	linux-gpio, linux-hams, linux-hwmon, linux-i3c, linux-ide,
	linux-iio, linux-input, linux-integrity, linux-mediatek,
	linux-media, linux-mmc, linux-mm, linux-mtd, linux-nfs,
	linux-rdma, linux-renesas-soc, linux-scsi, linux-sctp,
	linux-security-module, linux-stm32, linux-usb, linux-watchdog,
	linux-wireless, netdev, netfilter-devel, nouveau, op-tee,
	oss-drivers, patches, rds-devel, reiserfs-devel, samba-technical,
	selinux, target-devel, tipc-discussion, usb-storage,
	virtualization, wcn36xx, x86, xen-devel, linux-hardening,
	Nick Desaulniers, Nathan Chancellor, Miguel Ojeda, Joe Perches

On Fri, Nov 20, 2020 at 11:51:42AM -0800, Jakub Kicinski wrote:
> On Fri, 20 Nov 2020 11:30:40 -0800 Kees Cook wrote:
> > On Fri, Nov 20, 2020 at 10:53:44AM -0800, Jakub Kicinski wrote:
> > > On Fri, 20 Nov 2020 12:21:39 -0600 Gustavo A. R. Silva wrote:  
> > > > This series aims to fix almost all remaining fall-through warnings in
> > > > order to enable -Wimplicit-fallthrough for Clang.
> > > > 
> > > > In preparation to enable -Wimplicit-fallthrough for Clang, explicitly
> > > > add multiple break/goto/return/fallthrough statements instead of just
> > > > letting the code fall through to the next case.
> > > > 
> > > > Notice that in order to enable -Wimplicit-fallthrough for Clang, this
> > > > change[1] is meant to be reverted at some point. So, this patch helps
> > > > to move in that direction.
> > > > 
> > > > Something important to mention is that there is currently a discrepancy
> > > > between GCC and Clang when dealing with switch fall-through to empty case
> > > > statements or to cases that only contain a break/continue/return
> > > > statement[2][3][4].  
> > > 
> > > Are we sure we want to make this change? Was it discussed before?
> > > 
> > > Are there any bugs Clangs puritanical definition of fallthrough helped
> > > find?
> > > 
> > > IMVHO compiler warnings are supposed to warn about issues that could
> > > be bugs. Falling through to default: break; can hardly be a bug?!  
> > 
> > It's certainly a place where the intent is not always clear. I think
> > this makes all the cases unambiguous, and doesn't impact the machine
> > code, since the compiler will happily optimize away any behavioral
> > redundancy.
> 
> If none of the 140 patches here fix a real bug, and there is no change
> to machine code then it sounds to me like a W=2 kind of a warning.

FWIW, this series has found at least one bug so far:
https://lore.kernel.org/lkml/CAFCwf11izHF=g1mGry1fE5kvFFFrxzhPSM6qKAO8gxSp=Kr_CQ@mail.gmail.com/

-- 
Kees Cook

^ permalink raw reply	[flat|nested] 73+ messages in thread

* Re: [PATCH 000/141] Fix fall-through warnings for Clang
  2020-11-22 16:17       ` Kees Cook
@ 2020-11-22 18:21         ` James Bottomley
  2020-11-22 18:25           ` Joe Perches
                             ` (2 more replies)
  2020-11-24  1:32         ` Nick Desaulniers
  2020-12-01 14:04         ` Dan Carpenter
  2 siblings, 3 replies; 73+ messages in thread
From: James Bottomley @ 2020-11-22 18:21 UTC (permalink / raw)
  To: Kees Cook, Jakub Kicinski
  Cc: Gustavo A. R. Silva, linux-kernel, alsa-devel, amd-gfx, bridge,
	ceph-devel, cluster-devel, coreteam, devel, dm-devel, drbd-dev,
	dri-devel, GR-everest-linux-l2, GR-Linux-NIC-Dev, intel-gfx,
	intel-wired-lan, keyrings, linux1394-devel, linux-acpi,
	linux-afs, linux-arm-kernel, linux-arm-msm, linux-atm-general,
	linux-block, linux-can, linux-cifs, linux-crypto,
	linux-decnet-user, linux-ext4, linux-fbdev, linux-geode,
	linux-gpio, linux-hams, linux-hwmon, linux-i3c, linux-ide,
	linux-iio, linux-input, linux-integrity, linux-mediatek,
	linux-media, linux-mmc, linux-mm, linux-mtd, linux-nfs,
	linux-rdma, linux-renesas-soc, linux-scsi, linux-sctp,
	linux-security-module, linux-stm32, linux-usb, linux-watchdog,
	linux-wireless, netdev, netfilter-devel, nouveau, op-tee,
	oss-drivers, patches, rds-devel, reiserfs-devel, samba-technical,
	selinux, target-devel, tipc-discussion, usb-storage,
	virtualization, wcn36xx, x86, xen-devel, linux-hardening,
	Nick Desaulniers, Nathan Chancellor, Miguel Ojeda, Joe Perches

On Sun, 2020-11-22 at 08:17 -0800, Kees Cook wrote:
> On Fri, Nov 20, 2020 at 11:51:42AM -0800, Jakub Kicinski wrote:
> > On Fri, 20 Nov 2020 11:30:40 -0800 Kees Cook wrote:
> > > On Fri, Nov 20, 2020 at 10:53:44AM -0800, Jakub Kicinski wrote:
> > > > On Fri, 20 Nov 2020 12:21:39 -0600 Gustavo A. R. Silva wrote:  
> > > > > This series aims to fix almost all remaining fall-through
> > > > > warnings in order to enable -Wimplicit-fallthrough for Clang.
> > > > > 
> > > > > In preparation to enable -Wimplicit-fallthrough for Clang,
> > > > > explicitly add multiple break/goto/return/fallthrough
> > > > > statements instead of just letting the code fall through to
> > > > > the next case.
> > > > > 
> > > > > Notice that in order to enable -Wimplicit-fallthrough for
> > > > > Clang, this change[1] is meant to be reverted at some point.
> > > > > So, this patch helps to move in that direction.
> > > > > 
> > > > > Something important to mention is that there is currently a
> > > > > discrepancy between GCC and Clang when dealing with switch
> > > > > fall-through to empty case statements or to cases that only
> > > > > contain a break/continue/return statement[2][3][4].  
> > > > 
> > > > Are we sure we want to make this change? Was it discussed
> > > > before?
> > > > 
> > > > Are there any bugs Clangs puritanical definition of fallthrough
> > > > helped find?
> > > > 
> > > > IMVHO compiler warnings are supposed to warn about issues that
> > > > could be bugs. Falling through to default: break; can hardly be
> > > > a bug?!  
> > > 
> > > It's certainly a place where the intent is not always clear. I
> > > think this makes all the cases unambiguous, and doesn't impact
> > > the machine code, since the compiler will happily optimize away
> > > any behavioral redundancy.
> > 
> > If none of the 140 patches here fix a real bug, and there is no
> > change to machine code then it sounds to me like a W=2 kind of a
> > warning.
> 
> FWIW, this series has found at least one bug so far:
> https://lore.kernel.org/lkml/CAFCwf11izHF=g1mGry1fE5kvFFFrxzhPSM6qKAO8gxSp=Kr_CQ@mail.gmail.com/


Well, it's a problem in an error leg, sure, but it's not a really
compelling reason for a 141 patch series, is it?  All that fixing this
error will do is get the driver to print "oh dear there's a problem"
under four more conditions than it previously did.

We've been at this for three years now with nearly a thousand patches,
firstly marking all the fall throughs with /* fall through */ and later
changing it to fallthrough.  At some point we do have to ask if the
effort is commensurate with the protection afforded.  Please tell me
our reward for all this effort isn't a single missing error print.

James



^ permalink raw reply	[flat|nested] 73+ messages in thread

* Re: [PATCH 000/141] Fix fall-through warnings for Clang
  2020-11-22 18:21         ` James Bottomley
@ 2020-11-22 18:25           ` Joe Perches
  2020-11-22 19:12             ` James Bottomley
  2020-11-22 20:35           ` Miguel Ojeda
  2020-11-22 22:10           ` Sam Ravnborg
  2 siblings, 1 reply; 73+ messages in thread
From: Joe Perches @ 2020-11-22 18:25 UTC (permalink / raw)
  To: James Bottomley, Kees Cook, Jakub Kicinski
  Cc: Gustavo A. R. Silva, linux-kernel, alsa-devel, amd-gfx, bridge,
	ceph-devel, cluster-devel, coreteam, devel, dm-devel, drbd-dev,
	dri-devel, GR-everest-linux-l2, GR-Linux-NIC-Dev, intel-gfx,
	intel-wired-lan, keyrings, linux1394-devel, linux-acpi,
	linux-afs, linux-arm-kernel, linux-arm-msm, linux-atm-general,
	linux-block, linux-can, linux-cifs, linux-crypto,
	linux-decnet-user, linux-ext4, linux-fbdev, linux-geode,
	linux-gpio, linux-hams, linux-hwmon, linux-i3c, linux-ide,
	linux-iio, linux-input, linux-integrity, linux-mediatek,
	linux-media, linux-mmc, linux-mm, linux-mtd, linux-nfs,
	linux-rdma, linux-renesas-soc, linux-scsi, linux-sctp,
	linux-security-module, linux-stm32, linux-usb, linux-watchdog,
	linux-wireless, netdev, netfilter-devel, nouveau, op-tee,
	oss-drivers, patches, rds-devel, reiserfs-devel, samba-technical,
	selinux, target-devel, tipc-discussion, usb-storage,
	virtualization, wcn36xx, x86, xen-devel, linux-hardening,
	Nick Desaulniers, Nathan Chancellor, Miguel Ojeda

On Sun, 2020-11-22 at 10:21 -0800, James Bottomley wrote:
> Please tell me
> our reward for all this effort isn't a single missing error print.

There were quite literally dozens of logical defects found
by the fallthrough additions.  Very few were logging only.




^ permalink raw reply	[flat|nested] 73+ messages in thread

* Re: [PATCH 000/141] Fix fall-through warnings for Clang
  2020-11-22 18:25           ` Joe Perches
@ 2020-11-22 19:12             ` James Bottomley
  2020-11-22 19:22               ` Joe Perches
  0 siblings, 1 reply; 73+ messages in thread
From: James Bottomley @ 2020-11-22 19:12 UTC (permalink / raw)
  To: Joe Perches, Kees Cook, Jakub Kicinski
  Cc: Gustavo A. R. Silva, linux-kernel, alsa-devel, amd-gfx, bridge,
	ceph-devel, cluster-devel, coreteam, devel, dm-devel, drbd-dev,
	dri-devel, GR-everest-linux-l2, GR-Linux-NIC-Dev, intel-gfx,
	intel-wired-lan, keyrings, linux1394-devel, linux-acpi,
	linux-afs, linux-arm-kernel, linux-arm-msm, linux-atm-general,
	linux-block, linux-can, linux-cifs, linux-crypto,
	linux-decnet-user, linux-ext4, linux-fbdev, linux-geode,
	linux-gpio, linux-hams, linux-hwmon, linux-i3c, linux-ide,
	linux-iio, linux-input, linux-integrity, linux-mediatek,
	linux-media, linux-mmc, linux-mm, linux-mtd, linux-nfs,
	linux-rdma, linux-renesas-soc, linux-scsi, linux-sctp,
	linux-security-module, linux-stm32, linux-usb, linux-watchdog,
	linux-wireless, netdev, netfilter-devel, nouveau, op-tee,
	oss-drivers, patches, rds-devel, reiserfs-devel, samba-technical,
	selinux, target-devel, tipc-discussion, usb-storage,
	virtualization, wcn36xx, x86, xen-devel, linux-hardening,
	Nick Desaulniers, Nathan Chancellor, Miguel Ojeda

On Sun, 2020-11-22 at 10:25 -0800, Joe Perches wrote:
> On Sun, 2020-11-22 at 10:21 -0800, James Bottomley wrote:
> > Please tell me our reward for all this effort isn't a single
> > missing error print.
> 
> There were quite literally dozens of logical defects found
> by the fallthrough additions.  Very few were logging only.

So can you give us the best examples (or indeed all of them if someone
is keeping score)?  hopefully this isn't a US election situation ...

James



^ permalink raw reply	[flat|nested] 73+ messages in thread

* Re: [PATCH 000/141] Fix fall-through warnings for Clang
  2020-11-22 19:12             ` James Bottomley
@ 2020-11-22 19:22               ` Joe Perches
  2020-11-22 19:53                 ` James Bottomley
  0 siblings, 1 reply; 73+ messages in thread
From: Joe Perches @ 2020-11-22 19:22 UTC (permalink / raw)
  To: James Bottomley, Kees Cook, Jakub Kicinski
  Cc: Gustavo A. R. Silva, linux-kernel, alsa-devel, amd-gfx, bridge,
	ceph-devel, cluster-devel, coreteam, devel, dm-devel, drbd-dev,
	dri-devel, GR-everest-linux-l2, GR-Linux-NIC-Dev, intel-gfx,
	intel-wired-lan, keyrings, linux1394-devel, linux-acpi,
	linux-afs, linux-arm-kernel, linux-arm-msm, linux-atm-general,
	linux-block, linux-can, linux-cifs, linux-crypto,
	linux-decnet-user, linux-ext4, linux-fbdev, linux-geode,
	linux-gpio, linux-hams, linux-hwmon, linux-i3c, linux-ide,
	linux-iio, linux-input, linux-integrity, linux-mediatek,
	linux-media, linux-mmc, linux-mm, linux-mtd, linux-nfs,
	linux-rdma, linux-renesas-soc, linux-scsi, linux-sctp,
	linux-security-module, linux-stm32, linux-usb, linux-watchdog,
	linux-wireless, netdev, netfilter-devel, nouveau, op-tee,
	oss-drivers, patches, rds-devel, reiserfs-devel, samba-technical,
	selinux, target-devel, tipc-discussion, usb-storage,
	virtualization, wcn36xx, x86, xen-devel, linux-hardening,
	Nick Desaulniers, Nathan Chancellor, Miguel Ojeda

On Sun, 2020-11-22 at 11:12 -0800, James Bottomley wrote:
> On Sun, 2020-11-22 at 10:25 -0800, Joe Perches wrote:
> > On Sun, 2020-11-22 at 10:21 -0800, James Bottomley wrote:
> > > Please tell me our reward for all this effort isn't a single
> > > missing error print.
> > 
> > There were quite literally dozens of logical defects found
> > by the fallthrough additions.  Very few were logging only.
> 
> So can you give us the best examples (or indeed all of them if someone
> is keeping score)?  hopefully this isn't a US election situation ...

Gustavo?  Are you running for congress now?

https://lwn.net/Articles/794944/



^ permalink raw reply	[flat|nested] 73+ messages in thread

* Re: [PATCH 000/141] Fix fall-through warnings for Clang
  2020-11-22 19:22               ` Joe Perches
@ 2020-11-22 19:53                 ` James Bottomley
  2020-11-23 13:03                   ` [Intel-wired-lan] " Gustavo A. R. Silva
  0 siblings, 1 reply; 73+ messages in thread
From: James Bottomley @ 2020-11-22 19:53 UTC (permalink / raw)
  To: Joe Perches, Kees Cook, Jakub Kicinski
  Cc: Gustavo A. R. Silva, linux-kernel, alsa-devel, amd-gfx, bridge,
	ceph-devel, cluster-devel, coreteam, devel, dm-devel, drbd-dev,
	dri-devel, GR-everest-linux-l2, GR-Linux-NIC-Dev, intel-gfx,
	intel-wired-lan, keyrings, linux1394-devel, linux-acpi,
	linux-afs, linux-arm-kernel, linux-arm-msm, linux-atm-general,
	linux-block, linux-can, linux-cifs, linux-crypto,
	linux-decnet-user, linux-ext4, linux-fbdev, linux-geode,
	linux-gpio, linux-hams, linux-hwmon, linux-i3c, linux-ide,
	linux-iio, linux-input, linux-integrity, linux-mediatek,
	linux-media, linux-mmc, linux-mm, linux-mtd, linux-nfs,
	linux-rdma, linux-renesas-soc, linux-scsi, linux-sctp,
	linux-security-module, linux-stm32, linux-usb, linux-watchdog,
	linux-wireless, netdev, netfilter-devel, nouveau, op-tee,
	oss-drivers, patches, rds-devel, reiserfs-devel, samba-technical,
	selinux, target-devel, tipc-discussion, usb-storage,
	virtualization, wcn36xx, x86, xen-devel, linux-hardening,
	Nick Desaulniers, Nathan Chancellor, Miguel Ojeda

On Sun, 2020-11-22 at 11:22 -0800, Joe Perches wrote:
> On Sun, 2020-11-22 at 11:12 -0800, James Bottomley wrote:
> > On Sun, 2020-11-22 at 10:25 -0800, Joe Perches wrote:
> > > On Sun, 2020-11-22 at 10:21 -0800, James Bottomley wrote:
> > > > Please tell me our reward for all this effort isn't a single
> > > > missing error print.
> > > 
> > > There were quite literally dozens of logical defects found
> > > by the fallthrough additions.  Very few were logging only.
> > 
> > So can you give us the best examples (or indeed all of them if
> > someone is keeping score)?  hopefully this isn't a US election
> > situation ...
> 
> Gustavo?  Are you running for congress now?
> 
> https://lwn.net/Articles/794944/

That's 21 reported fixes of which about 50% seem to produce no change
in code behaviour at all, a quarter seem to have no user visible effect
with the remaining quarter producing unexpected errors on obscure
configuration parameters, which is why no-one really noticed them
before.

James



^ permalink raw reply	[flat|nested] 73+ messages in thread

* Re: [PATCH 000/141] Fix fall-through warnings for Clang
  2020-11-22 18:21         ` James Bottomley
  2020-11-22 18:25           ` Joe Perches
@ 2020-11-22 20:35           ` Miguel Ojeda
  2020-11-22 22:36             ` James Bottomley
  2020-11-22 22:54             ` Finn Thain
  2020-11-22 22:10           ` Sam Ravnborg
  2 siblings, 2 replies; 73+ messages in thread
From: Miguel Ojeda @ 2020-11-22 20:35 UTC (permalink / raw)
  To: James Bottomley
  Cc: Kees Cook, Jakub Kicinski, Gustavo A. R. Silva, linux-kernel,
	alsa-devel, amd-gfx, bridge, ceph-devel, cluster-devel, coreteam,
	devel, dm-devel, drbd-dev, dri-devel, GR-everest-linux-l2,
	GR-Linux-NIC-Dev, intel-gfx, intel-wired-lan, keyrings,
	linux1394-devel, linux-acpi, linux-afs, Linux ARM, linux-arm-msm,
	linux-atm-general, linux-block, linux-can, linux-cifs,
	Linux Crypto Mailing List, linux-decnet-user,
	Ext4 Developers List, linux-fbdev, linux-geode, linux-gpio,
	linux-hams, linux-hwmon, linux-i3c, linux-ide, linux-iio,
	linux-input, linux-integrity, linux-mediatek,
	Linux Media Mailing List, linux-mmc, Linux-MM, linux-mtd,
	linux-nfs, linux-rdma, linux-renesas-soc, linux-scsi, linux-sctp,
	linux-security-module, linux-stm32, linux-usb, linux-watchdog,
	linux-wireless, Network Development, netfilter-devel, nouveau,
	op-tee, oss-drivers, patches, rds-devel, reiserfs-devel,
	samba-technical, selinux, target-devel, tipc-discussion,
	usb-storage, virtualization, wcn36xx,
	maintainer:X86 ARCHITECTURE (32-BIT AND 64-BIT),
	xen-devel, linux-hardening, Nick Desaulniers, Nathan Chancellor,
	Miguel Ojeda, Joe Perches

On Sun, Nov 22, 2020 at 7:22 PM James Bottomley
<James.Bottomley@hansenpartnership.com> wrote:
>
> Well, it's a problem in an error leg, sure, but it's not a really
> compelling reason for a 141 patch series, is it?  All that fixing this
> error will do is get the driver to print "oh dear there's a problem"
> under four more conditions than it previously did.
>
> We've been at this for three years now with nearly a thousand patches,
> firstly marking all the fall throughs with /* fall through */ and later
> changing it to fallthrough.  At some point we do have to ask if the
> effort is commensurate with the protection afforded.  Please tell me
> our reward for all this effort isn't a single missing error print.

It isn't that much effort, isn't it? Plus we need to take into account
the future mistakes that it might prevent, too. So even if there were
zero problems found so far, it is still a positive change.

I would agree if these changes were high risk, though; but they are
almost trivial.

Cheers,
Miguel

^ permalink raw reply	[flat|nested] 73+ messages in thread

* Re: [PATCH 000/141] Fix fall-through warnings for Clang
  2020-11-22 18:21         ` James Bottomley
  2020-11-22 18:25           ` Joe Perches
  2020-11-22 20:35           ` Miguel Ojeda
@ 2020-11-22 22:10           ` Sam Ravnborg
  2 siblings, 0 replies; 73+ messages in thread
From: Sam Ravnborg @ 2020-11-22 22:10 UTC (permalink / raw)
  To: James Bottomley
  Cc: Kees Cook, Jakub Kicinski, alsa-devel, linux-atm-general,
	reiserfs-devel, linux-iio, linux-wireless, linux-fbdev,
	dri-devel, linux-kernel, Nathan Chancellor, linux-ide, dm-devel,
	keyrings, linux-mtd, GR-everest-linux-l2, wcn36xx,
	samba-technical, linux-i3c, linux1394-devel, linux-afs,
	usb-storage, drbd-dev, devel, linux-cifs, rds-devel,
	Nick Desaulniers, linux-scsi, linux-rdma, oss-drivers, bridge,
	linux-security-module, amd-gfx, linux-stm32, cluster-devel,
	linux-acpi, coreteam, intel-wired-lan, linux-input, Miguel Ojeda,
	tipc-discussion, linux-ext4, linux-media, linux-watchdog,
	selinux, linux-arm-msm, intel-gfx, linux-geode, linux-can,
	linux-block, linux-gpio, op-tee, linux-mediatek, xen-devel,
	nouveau, linux-hams, ceph-devel, virtualization, target-devel,
	linux-arm-kernel, linux-hwmon, x86, linux-nfs, GR-Linux-NIC-Dev,
	linux-mm, netdev, linux-decnet-user, linux-mmc,
	Gustavo A. R. Silva, linux-renesas-soc, linux-sctp, linux-usb,
	netfilter-devel, linux-crypto, patches, Joe Perches,
	linux-integrity, linux-hardening

Hi James.

> > > If none of the 140 patches here fix a real bug, and there is no
> > > change to machine code then it sounds to me like a W=2 kind of a
> > > warning.
> > 
> > FWIW, this series has found at least one bug so far:
> > https://lore.kernel.org/lkml/CAFCwf11izHF=g1mGry1fE5kvFFFrxzhPSM6qKAO8gxSp=Kr_CQ@mail.gmail.com/
> 
> 
> Well, it's a problem in an error leg, sure, but it's not a really
> compelling reason for a 141 patch series, is it?  All that fixing this
> error will do is get the driver to print "oh dear there's a problem"
> under four more conditions than it previously did.

You are asking the wrong question here.

Yuo should ask  how many hours could have been saved by all the bugs
people have been fighting with and then fixed *before* the code
hit the kernel at all.

My personal experience is that I, more than once, have had errors
related to a missing break in my code. So this warnings is IMO a win.

And if we are only ~100 patches to have it globally enabled then it is a
no-brainer in my book.

	Sam

^ permalink raw reply	[flat|nested] 73+ messages in thread

* Re: [PATCH 000/141] Fix fall-through warnings for Clang
  2020-11-22 20:35           ` Miguel Ojeda
@ 2020-11-22 22:36             ` James Bottomley
  2020-11-23 14:19               ` Miguel Ojeda
  2020-11-22 22:54             ` Finn Thain
  1 sibling, 1 reply; 73+ messages in thread
From: James Bottomley @ 2020-11-22 22:36 UTC (permalink / raw)
  To: Miguel Ojeda
  Cc: Kees Cook, Jakub Kicinski, Gustavo A. R. Silva, linux-kernel,
	alsa-devel, amd-gfx, bridge, ceph-devel, cluster-devel, coreteam,
	devel, dm-devel, drbd-dev, dri-devel, GR-everest-linux-l2,
	GR-Linux-NIC-Dev, intel-gfx, intel-wired-lan, keyrings,
	linux1394-devel, linux-acpi, linux-afs, Linux ARM, linux-arm-msm,
	linux-atm-general, linux-block, linux-can, linux-cifs,
	Linux Crypto Mailing List, linux-decnet-user,
	Ext4 Developers List, linux-fbdev, linux-geode, linux-gpio,
	linux-hams, linux-hwmon, linux-i3c, linux-ide, linux-iio,
	linux-input, linux-integrity, linux-mediatek,
	Linux Media Mailing List, linux-mmc, Linux-MM, linux-mtd,
	linux-nfs, linux-rdma, linux-renesas-soc, linux-scsi, linux-sctp,
	linux-security-module, linux-stm32, linux-usb, linux-watchdog,
	linux-wireless, Network Development, netfilter-devel, nouveau,
	op-tee, oss-drivers, patches, rds-devel, reiserfs-devel,
	samba-technical, selinux, target-devel, tipc-discussion,
	usb-storage, virtualization, wcn36xx,
	maintainer:X86 ARCHITECTURE (32-BIT AND 64-BIT),
	xen-devel, linux-hardening, Nick Desaulniers, Nathan Chancellor,
	Miguel Ojeda, Joe Perches

On Sun, 2020-11-22 at 21:35 +0100, Miguel Ojeda wrote:
> On Sun, Nov 22, 2020 at 7:22 PM James Bottomley
> <James.Bottomley@hansenpartnership.com> wrote:
> > Well, it's a problem in an error leg, sure, but it's not a really
> > compelling reason for a 141 patch series, is it?  All that fixing
> > this error will do is get the driver to print "oh dear there's a
> > problem" under four more conditions than it previously did.
> > 
> > We've been at this for three years now with nearly a thousand
> > patches, firstly marking all the fall throughs with /* fall through
> > */ and later changing it to fallthrough.  At some point we do have
> > to ask if the effort is commensurate with the protection
> > afforded.  Please tell me our reward for all this effort isn't a
> > single missing error print.
> 
> It isn't that much effort, isn't it?

Well, it seems to be three years of someone's time plus the maintainer
review time and series disruption of nearly a thousand patches.  Let's
be conservative and assume the producer worked about 30% on the series
and it takes about 5-10 minutes per patch to review, merge and for
others to rework existing series.  So let's say it's cost a person year
of a relatively junior engineer producing the patches and say 100h of
review and application time.  The latter is likely the big ticket item
because it's what we have in least supply in the kernel (even though
it's 20x vs the producer time).

>  Plus we need to take into account the future mistakes that it might
> prevent, too. So even if there were zero problems found so far, it is
> still a positive change.

Well, the question I was asking is if it's worth the cost which I've
tried to outline above.

> I would agree if these changes were high risk, though; but they are
> almost trivial.

It's not about the risk of the changes it's about the cost of
implementing them.  Even if you discount the producer time (which
someone gets to pay for, and if I were the engineering manager, I'd be
unhappy about), the review/merge/rework time is pretty significant in
exchange for six minor bug fixes.  Fine, when a new compiler warning
comes along it's certainly reasonable to see if we can benefit from it
and the fact that the compiler people think it's worthwhile is enough
evidence to assume this initially.  But at some point you have to ask
whether that assumption is supported by the evidence we've accumulated
over the time we've been using it.  And if the evidence doesn't support
it perhaps it is time to stop the experiment.

James



^ permalink raw reply	[flat|nested] 73+ messages in thread

* Re: [PATCH 000/141] Fix fall-through warnings for Clang
  2020-11-22 20:35           ` Miguel Ojeda
  2020-11-22 22:36             ` James Bottomley
@ 2020-11-22 22:54             ` Finn Thain
  2020-11-22 23:04               ` James Bottomley
  2020-11-23 14:05               ` Miguel Ojeda
  1 sibling, 2 replies; 73+ messages in thread
From: Finn Thain @ 2020-11-22 22:54 UTC (permalink / raw)
  To: Miguel Ojeda
  Cc: James Bottomley, Kees Cook, Jakub Kicinski, Gustavo A. R. Silva,
	linux-kernel, alsa-devel, amd-gfx, bridge, ceph-devel,
	cluster-devel, coreteam, devel, dm-devel, drbd-dev, dri-devel,
	GR-everest-linux-l2, GR-Linux-NIC-Dev, intel-gfx,
	intel-wired-lan, keyrings, linux1394-devel, linux-acpi,
	linux-afs, Linux ARM, linux-arm-msm, linux-atm-general,
	linux-block, linux-can, linux-cifs, Linux Crypto Mailing List,
	linux-decnet-user, Ext4 Developers List, linux-fbdev,
	linux-geode, linux-gpio, linux-hams, linux-hwmon, linux-i3c,
	linux-ide, linux-iio, linux-input, linux-integrity,
	linux-mediatek, Linux Media Mailing List, linux-mmc, Linux-MM,
	linux-mtd, linux-nfs, linux-rdma, linux-renesas-soc, linux-scsi,
	linux-sctp, linux-security-module, linux-stm32, linux-usb,
	linux-watchdog, linux-wireless, Network Development,
	netfilter-devel, nouveau, op-tee, oss-drivers, patches,
	rds-devel, reiserfs-devel, samba-technical, selinux,
	target-devel, tipc-discussion, usb-storage, virtualization,
	wcn36xx, maintainer:X86 ARCHITECTURE (32-BIT AND 64-BIT),
	xen-devel, linux-hardening, Nick Desaulniers, Nathan Chancellor,
	Miguel Ojeda, Joe Perches


On Sun, 22 Nov 2020, Miguel Ojeda wrote:

> 
> It isn't that much effort, isn't it? Plus we need to take into account 
> the future mistakes that it might prevent, too.

We should also take into account optimisim about future improvements in 
tooling.

> So even if there were zero problems found so far, it is still a positive 
> change.
> 

It is if you want to spin it that way.

> I would agree if these changes were high risk, though; but they are 
> almost trivial.
> 

This is trivial:

 case 1:
	this();
+	fallthrough;
 case 2:
 	that();

But what we inevitably get is changes like this:

 case 3:
        this();
+       break;
 case 4:
        hmmm();

Why? Mainly to silence the compiler. Also because the patch author argued 
successfully that they had found a theoretical bug, often in mature code.

But is anyone keeping score of the regressions? If unreported bugs count, 
what about unreported regressions?

> Cheers,
> Miguel
> 

^ permalink raw reply	[flat|nested] 73+ messages in thread

* Re: [PATCH 000/141] Fix fall-through warnings for Clang
  2020-11-22 22:54             ` Finn Thain
@ 2020-11-22 23:04               ` James Bottomley
  2020-11-23 14:05               ` Miguel Ojeda
  1 sibling, 0 replies; 73+ messages in thread
From: James Bottomley @ 2020-11-22 23:04 UTC (permalink / raw)
  To: Finn Thain, Miguel Ojeda
  Cc: Kees Cook, Jakub Kicinski, Gustavo A. R. Silva, linux-kernel,
	alsa-devel, amd-gfx, bridge, ceph-devel, cluster-devel, coreteam,
	devel, dm-devel, drbd-dev, dri-devel, GR-everest-linux-l2,
	GR-Linux-NIC-Dev, intel-gfx, intel-wired-lan, keyrings,
	linux1394-devel, linux-acpi, linux-afs, Linux ARM, linux-arm-msm,
	linux-atm-general, linux-block, linux-can, linux-cifs,
	Linux Crypto Mailing List, linux-decnet-user,
	Ext4 Developers List, linux-fbdev, linux-geode, linux-gpio,
	linux-hams, linux-hwmon, linux-i3c, linux-ide, linux-iio,
	linux-input, linux-integrity, linux-mediatek,
	Linux Media Mailing List, linux-mmc, Linux-MM, linux-mtd,
	linux-nfs, linux-rdma, linux-renesas-soc, linux-scsi, linux-sctp,
	linux-security-module, linux-stm32, linux-usb, linux-watchdog,
	linux-wireless, Network Development, netfilter-devel, nouveau,
	op-tee, oss-drivers, patches, rds-devel, reiserfs-devel,
	samba-technical, selinux, target-devel, tipc-discussion,
	usb-storage, virtualization, wcn36xx,
	maintainer:X86 ARCHITECTURE (32-BIT AND 64-BIT),
	xen-devel, linux-hardening, Nick Desaulniers, Nathan Chancellor,
	Miguel Ojeda, Joe Perches

On Mon, 2020-11-23 at 09:54 +1100, Finn Thain wrote:
> But is anyone keeping score of the regressions? If unreported bugs
> count, what about unreported regressions?

Well, I was curious about the former (obviously no tool will tell me
about the latter), so I asked git what patches had a fall-through
series named in a fixes tag and these three popped out:

9cf51446e686 bpf, powerpc: Fix misuse of fallthrough in bpf_jit_comp()
6a9dc5fd6170 lib: Revert use of fallthrough pseudo-keyword in lib/
91dbd73a1739 mips/oprofile: Fix fallthrough placement

I don't think any of these is fixing a significant problem, but they
did cause someone time and trouble to investigate.

James



^ permalink raw reply	[flat|nested] 73+ messages in thread

* Re: [Intel-wired-lan] [PATCH 000/141] Fix fall-through warnings for Clang
  2020-11-22 19:53                 ` James Bottomley
@ 2020-11-23 13:03                   ` Gustavo A. R. Silva
  2020-11-23 16:31                     ` James Bottomley
  0 siblings, 1 reply; 73+ messages in thread
From: Gustavo A. R. Silva @ 2020-11-23 13:03 UTC (permalink / raw)
  To: James Bottomley
  Cc: Joe Perches, Kees Cook, Jakub Kicinski, alsa-devel,
	linux-atm-general, reiserfs-devel, linux-iio, linux-wireless,
	linux-fbdev, dri-devel, linux-kernel, Nathan Chancellor,
	linux-ide, dm-devel, keyrings, linux-mtd, GR-everest-linux-l2,
	wcn36xx, samba-technical, linux-i3c, linux1394-devel, linux-afs,
	usb-storage, drbd-dev, devel, linux-cifs, rds-devel,
	Nick Desaulniers, linux-scsi, linux-rdma, oss-drivers, bridge,
	linux-security-module, amd-gfx, linux-stm32, cluster-devel,
	linux-acpi, coreteam, intel-wired-lan, linux-input, Miguel Ojeda,
	tipc-discussion, linux-ext4, linux-media, linux-watchdog,
	selinux, linux-arm-msm, intel-gfx, linux-geode, linux-can,
	linux-block, linux-gpio, op-tee, linux-mediatek, xen-devel,
	nouveau, linux-hams, ceph-devel, virtualization,
	linux-arm-kernel, linux-hwmon, x86, linux-nfs, GR-Linux-NIC-Dev,
	linux-mm, netdev, linux-decnet-user, linux-mmc,
	linux-renesas-soc, linux-sctp, linux-usb, netfilter-devel,
	linux-crypto, patches, linux-integrity, target-devel,
	linux-hardening, Jonathan Cameron, Greg KH

On Sun, Nov 22, 2020 at 11:53:55AM -0800, James Bottomley wrote:
> On Sun, 2020-11-22 at 11:22 -0800, Joe Perches wrote:
> > On Sun, 2020-11-22 at 11:12 -0800, James Bottomley wrote:
> > > On Sun, 2020-11-22 at 10:25 -0800, Joe Perches wrote:
> > > > On Sun, 2020-11-22 at 10:21 -0800, James Bottomley wrote:
> > > > > Please tell me our reward for all this effort isn't a single
> > > > > missing error print.
> > > > 
> > > > There were quite literally dozens of logical defects found
> > > > by the fallthrough additions.  Very few were logging only.
> > > 
> > > So can you give us the best examples (or indeed all of them if
> > > someone is keeping score)?  hopefully this isn't a US election
> > > situation ...
> > 
> > Gustavo?  Are you running for congress now?
> > 
> > https://lwn.net/Articles/794944/
> 
> That's 21 reported fixes of which about 50% seem to produce no change
> in code behaviour at all, a quarter seem to have no user visible effect
> with the remaining quarter producing unexpected errors on obscure
> configuration parameters, which is why no-one really noticed them
> before.

The really important point here is the number of bugs this has prevented
and will prevent in the future. See an example of this, below:

https://lore.kernel.org/linux-iio/20190813135802.GB27392@kroah.com/

This work is still relevant, even if the total number of issues/bugs
we find in the process is zero (which is not the case).

"The sucky thing about doing hard work to deploy hardening is that the
result is totally invisible by definition (things not happening) [..]"
- Dmitry Vyukov

Thanks
--
Gustavo






^ permalink raw reply	[flat|nested] 73+ messages in thread

* Re: [PATCH 000/141] Fix fall-through warnings for Clang
  2020-11-22 22:54             ` Finn Thain
  2020-11-22 23:04               ` James Bottomley
@ 2020-11-23 14:05               ` Miguel Ojeda
  2020-11-24  0:58                 ` Finn Thain
  1 sibling, 1 reply; 73+ messages in thread
From: Miguel Ojeda @ 2020-11-23 14:05 UTC (permalink / raw)
  To: Finn Thain
  Cc: James Bottomley, Kees Cook, Jakub Kicinski, Gustavo A. R. Silva,
	linux-kernel, alsa-devel, amd-gfx, bridge, ceph-devel,
	cluster-devel, coreteam, devel, dm-devel, drbd-dev, dri-devel,
	GR-everest-linux-l2, GR-Linux-NIC-Dev, intel-gfx,
	intel-wired-lan, keyrings, linux1394-devel, linux-acpi,
	linux-afs, Linux ARM, linux-arm-msm, linux-atm-general,
	linux-block, linux-can, linux-cifs, Linux Crypto Mailing List,
	linux-decnet-user, Ext4 Developers List, linux-fbdev,
	linux-geode, linux-gpio, linux-hams, linux-hwmon, linux-i3c,
	linux-ide, linux-iio, linux-input, linux-integrity,
	linux-mediatek, Linux Media Mailing List, linux-mmc, Linux-MM,
	linux-mtd, linux-nfs, linux-rdma, linux-renesas-soc, linux-scsi,
	linux-sctp, linux-security-module, linux-stm32, linux-usb,
	linux-watchdog, linux-wireless, Network Development,
	netfilter-devel, nouveau, op-tee, oss-drivers, patches,
	rds-devel, reiserfs-devel, samba-technical, selinux,
	target-devel, tipc-discussion, usb-storage, virtualization,
	wcn36xx, maintainer:X86 ARCHITECTURE (32-BIT AND 64-BIT),
	xen-devel, linux-hardening, Nick Desaulniers, Nathan Chancellor,
	Miguel Ojeda, Joe Perches

On Sun, Nov 22, 2020 at 11:54 PM Finn Thain <fthain@telegraphics.com.au> wrote:
>
> We should also take into account optimisim about future improvements in
> tooling.

Not sure what you mean here. There is no reliable way to guess what
the intention was with a missing fallthrough, even if you parsed
whitespace and indentation.

> It is if you want to spin it that way.

How is that a "spin"? It is a fact that we won't get *implicit*
fallthrough mistakes anymore (in particular if we make it a hard
error).

> But what we inevitably get is changes like this:
>
>  case 3:
>         this();
> +       break;
>  case 4:
>         hmmm();
>
> Why? Mainly to silence the compiler. Also because the patch author argued
> successfully that they had found a theoretical bug, often in mature code.

If someone changes control flow, that is on them. Every kernel
developer knows what `break` does.

> But is anyone keeping score of the regressions? If unreported bugs count,
> what about unreported regressions?

Introducing `fallthrough` does not change semantics. If you are really
keen, you can always compare the objects because the generated code
shouldn't change.

Cheers,
Miguel

^ permalink raw reply	[flat|nested] 73+ messages in thread

* Re: [PATCH 000/141] Fix fall-through warnings for Clang
  2020-11-22 22:36             ` James Bottomley
@ 2020-11-23 14:19               ` Miguel Ojeda
  2020-11-23 15:58                 ` James Bottomley
  0 siblings, 1 reply; 73+ messages in thread
From: Miguel Ojeda @ 2020-11-23 14:19 UTC (permalink / raw)
  To: James Bottomley
  Cc: Kees Cook, Jakub Kicinski, Gustavo A. R. Silva, linux-kernel,
	alsa-devel, amd-gfx, bridge, ceph-devel, cluster-devel, coreteam,
	devel, dm-devel, drbd-dev, dri-devel, GR-everest-linux-l2,
	GR-Linux-NIC-Dev, intel-gfx, intel-wired-lan, keyrings,
	linux1394-devel, linux-acpi, linux-afs, Linux ARM, linux-arm-msm,
	linux-atm-general, linux-block, linux-can, linux-cifs,
	Linux Crypto Mailing List, linux-decnet-user,
	Ext4 Developers List, linux-fbdev, linux-geode, linux-gpio,
	linux-hams, linux-hwmon, linux-i3c, linux-ide, linux-iio,
	linux-input, linux-integrity, linux-mediatek,
	Linux Media Mailing List, linux-mmc, Linux-MM, linux-mtd,
	linux-nfs, linux-rdma, linux-renesas-soc, linux-scsi, linux-sctp,
	linux-security-module, linux-stm32, linux-usb, linux-watchdog,
	linux-wireless, Network Development, netfilter-devel, nouveau,
	op-tee, oss-drivers, patches, rds-devel, reiserfs-devel,
	samba-technical, selinux, target-devel, tipc-discussion,
	usb-storage, virtualization, wcn36xx,
	maintainer:X86 ARCHITECTURE (32-BIT AND 64-BIT),
	xen-devel, linux-hardening, Nick Desaulniers, Nathan Chancellor,
	Miguel Ojeda, Joe Perches

On Sun, Nov 22, 2020 at 11:36 PM James Bottomley
<James.Bottomley@hansenpartnership.com> wrote:
>
> Well, it seems to be three years of someone's time plus the maintainer
> review time and series disruption of nearly a thousand patches.  Let's
> be conservative and assume the producer worked about 30% on the series
> and it takes about 5-10 minutes per patch to review, merge and for
> others to rework existing series.  So let's say it's cost a person year
> of a relatively junior engineer producing the patches and say 100h of
> review and application time.  The latter is likely the big ticket item
> because it's what we have in least supply in the kernel (even though
> it's 20x vs the producer time).

How are you arriving at such numbers? It is a total of ~200 trivial lines.

> It's not about the risk of the changes it's about the cost of
> implementing them.  Even if you discount the producer time (which
> someone gets to pay for, and if I were the engineering manager, I'd be
> unhappy about), the review/merge/rework time is pretty significant in
> exchange for six minor bug fixes.  Fine, when a new compiler warning
> comes along it's certainly reasonable to see if we can benefit from it
> and the fact that the compiler people think it's worthwhile is enough
> evidence to assume this initially.  But at some point you have to ask
> whether that assumption is supported by the evidence we've accumulated
> over the time we've been using it.  And if the evidence doesn't support
> it perhaps it is time to stop the experiment.

Maintainers routinely review 1-line trivial patches, not to mention
internal API changes, etc.

If some company does not want to pay for that, that's fine, but they
don't get to be maintainers and claim `Supported`.

Cheers,
Miguel

^ permalink raw reply	[flat|nested] 73+ messages in thread

* Re: [PATCH 000/141] Fix fall-through warnings for Clang
  2020-11-23 14:19               ` Miguel Ojeda
@ 2020-11-23 15:58                 ` James Bottomley
  2020-11-23 16:24                   ` Rafael J. Wysocki
                                     ` (3 more replies)
  0 siblings, 4 replies; 73+ messages in thread
From: James Bottomley @ 2020-11-23 15:58 UTC (permalink / raw)
  To: Miguel Ojeda
  Cc: Kees Cook, Jakub Kicinski, Gustavo A. R. Silva, linux-kernel,
	alsa-devel, amd-gfx, bridge, ceph-devel, cluster-devel, coreteam,
	devel, dm-devel, drbd-dev, dri-devel, GR-everest-linux-l2,
	GR-Linux-NIC-Dev, intel-gfx, intel-wired-lan, keyrings,
	linux1394-devel, linux-acpi, linux-afs, Linux ARM, linux-arm-msm,
	linux-atm-general, linux-block, linux-can, linux-cifs,
	Linux Crypto Mailing List, linux-decnet-user,
	Ext4 Developers List, linux-fbdev, linux-geode, linux-gpio,
	linux-hams, linux-hwmon, linux-i3c, linux-ide, linux-iio,
	linux-input, linux-integrity, linux-mediatek,
	Linux Media Mailing List, linux-mmc, Linux-MM, linux-mtd,
	linux-nfs, linux-rdma, linux-renesas-soc, linux-scsi, linux-sctp,
	linux-security-module, linux-stm32, linux-usb, linux-watchdog,
	linux-wireless, Network Development, netfilter-devel, nouveau,
	op-tee, oss-drivers, patches, rds-devel, reiserfs-devel,
	samba-technical, selinux, target-devel, tipc-discussion,
	usb-storage, virtualization, wcn36xx,
	maintainer:X86 ARCHITECTURE (32-BIT AND 64-BIT),
	xen-devel, linux-hardening, Nick Desaulniers, Nathan Chancellor,
	Miguel Ojeda, Joe Perches

On Mon, 2020-11-23 at 15:19 +0100, Miguel Ojeda wrote:
> On Sun, Nov 22, 2020 at 11:36 PM James Bottomley
> <James.Bottomley@hansenpartnership.com> wrote:
> > Well, it seems to be three years of someone's time plus the
> > maintainer review time and series disruption of nearly a thousand
> > patches.  Let's be conservative and assume the producer worked
> > about 30% on the series and it takes about 5-10 minutes per patch
> > to review, merge and for others to rework existing series.  So
> > let's say it's cost a person year of a relatively junior engineer
> > producing the patches and say 100h of review and application
> > time.  The latter is likely the big ticket item because it's what
> > we have in least supply in the kernel (even though it's 20x vs the
> > producer time).
> 
> How are you arriving at such numbers? It is a total of ~200 trivial
> lines.

Well, I used git.  It says that as of today in Linus' tree we have 889
patches related to fall throughs and the first series went in in
october 2017 ... ignoring a couple of outliers back to February.

> > It's not about the risk of the changes it's about the cost of
> > implementing them.  Even if you discount the producer time (which
> > someone gets to pay for, and if I were the engineering manager, I'd
> > be unhappy about), the review/merge/rework time is pretty
> > significant in exchange for six minor bug fixes.  Fine, when a new
> > compiler warning comes along it's certainly reasonable to see if we
> > can benefit from it and the fact that the compiler people think
> > it's worthwhile is enough evidence to assume this initially.  But
> > at some point you have to ask whether that assumption is supported
> > by the evidence we've accumulated over the time we've been using
> > it.  And if the evidence doesn't support it perhaps it is time to
> > stop the experiment.
> 
> Maintainers routinely review 1-line trivial patches, not to mention
> internal API changes, etc.

We're also complaining about the inability to recruit maintainers:

https://www.theregister.com/2020/06/30/hard_to_find_linux_maintainers_says_torvalds/

And burn out:

http://antirez.com/news/129

The whole crux of your argument seems to be maintainers' time isn't
important so we should accept all trivial patches ... I'm pushing back
on that assumption in two places, firstly the valulessness of the time
and secondly that all trivial patches are valuable.

> If some company does not want to pay for that, that's fine, but they
> don't get to be maintainers and claim `Supported`.

What I'm actually trying to articulate is a way of measuring value of
the patch vs cost ... it has nothing really to do with who foots the
actual bill.

One thesis I'm actually starting to formulate is that this continual
devaluing of maintainers is why we have so much difficulty keeping and
recruiting them.

James




^ permalink raw reply	[flat|nested] 73+ messages in thread

* Re: [PATCH 000/141] Fix fall-through warnings for Clang
  2020-11-23 15:58                 ` James Bottomley
@ 2020-11-23 16:24                   ` Rafael J. Wysocki
  2020-11-23 16:32                   ` Joe Perches
                                     ` (2 subsequent siblings)
  3 siblings, 0 replies; 73+ messages in thread
From: Rafael J. Wysocki @ 2020-11-23 16:24 UTC (permalink / raw)
  To: James Bottomley
  Cc: Miguel Ojeda, Kees Cook, Jakub Kicinski, Gustavo A. R. Silva,
	linux-kernel,
	moderated list:SOUND - SOC LAYER / DYNAMIC AUDIO POWER MANAGEM...,
	amd-gfx list, bridge, ceph-devel, cluster-devel, coreteam, devel,
	dm-devel, drbd-dev, dri-devel, GR-everest-linux-l2,
	GR-Linux-NIC-Dev, intel-gfx, intel-wired-lan, keyrings,
	linux1394-devel, ACPI Devel Maling List, linux-afs, Linux ARM,
	linux-arm-msm, linux-atm-general, linux-block, linux-can,
	linux-cifs, Linux Crypto Mailing List, linux-decnet-user,
	Ext4 Developers List, open list:FRAMEBUFFER LAYER, linux-geode,
	linux-gpio, linux-hams, linux-hwmon, linux-i3c,
	open list:LIBATA SUBSYSTEM (Serial and Parallel ATA drivers),
	linux-iio, linux-input, linux-integrity,
	moderated list:ARM/Mediatek SoC...,
	Linux Media Mailing List, linux-mmc, Linux-MM, linux-mtd,
	linux-nfs, linux-rdma, Linux-Renesas, open list:TARGET SUBSYSTEM,
	linux-sctp, linux-security-module, linux-stm32,
	open list:ULTRA-WIDEBAND (UWB) SUBSYSTEM:,
	linux-watchdog, linux-wireless, Network Development,
	netfilter-devel, nouveau, op-tee, oss-drivers, patches,
	rds-devel, reiserfs-devel, samba-technical, selinux,
	target-devel, tipc-discussion, usb-storage, virtualization,
	wcn36xx, maintainer:X86 ARCHITECTURE (32-BIT AND 64-BIT),
	xen-devel, linux-hardening, Nick Desaulniers, Nathan Chancellor,
	Miguel Ojeda, Joe Perches

On Mon, Nov 23, 2020 at 4:58 PM James Bottomley
<James.Bottomley@hansenpartnership.com> wrote:
>
> On Mon, 2020-11-23 at 15:19 +0100, Miguel Ojeda wrote:
> > On Sun, Nov 22, 2020 at 11:36 PM James Bottomley
> > <James.Bottomley@hansenpartnership.com> wrote:

[cut]

> >
> > Maintainers routinely review 1-line trivial patches, not to mention
> > internal API changes, etc.
>
> We're also complaining about the inability to recruit maintainers:
>
> https://www.theregister.com/2020/06/30/hard_to_find_linux_maintainers_says_torvalds/
>
> And burn out:
>
> http://antirez.com/news/129

Right.

> The whole crux of your argument seems to be maintainers' time isn't
> important so we should accept all trivial patches ... I'm pushing back
> on that assumption in two places, firstly the valulessness of the time
> and secondly that all trivial patches are valuable.
>
> > If some company does not want to pay for that, that's fine, but they
> > don't get to be maintainers and claim `Supported`.
>
> What I'm actually trying to articulate is a way of measuring value of
> the patch vs cost ... it has nothing really to do with who foots the
> actual bill.
>
> One thesis I'm actually starting to formulate is that this continual
> devaluing of maintainers is why we have so much difficulty keeping and
> recruiting them.

Absolutely.

This is just one of the factors involved, but a significant one IMV.

^ permalink raw reply	[flat|nested] 73+ messages in thread

* Re: [Intel-wired-lan] [PATCH 000/141] Fix fall-through warnings for Clang
  2020-11-23 13:03                   ` [Intel-wired-lan] " Gustavo A. R. Silva
@ 2020-11-23 16:31                     ` James Bottomley
  2020-11-24 21:32                       ` Kees Cook
  0 siblings, 1 reply; 73+ messages in thread
From: James Bottomley @ 2020-11-23 16:31 UTC (permalink / raw)
  To: Gustavo A. R. Silva
  Cc: Joe Perches, Kees Cook, Jakub Kicinski, alsa-devel,
	linux-atm-general, reiserfs-devel, linux-iio, linux-wireless,
	linux-fbdev, dri-devel, linux-kernel, Nathan Chancellor,
	linux-ide, dm-devel, keyrings, linux-mtd, GR-everest-linux-l2,
	wcn36xx, samba-technical, linux-i3c, linux1394-devel, linux-afs,
	usb-storage, drbd-dev, devel, linux-cifs, rds-devel,
	Nick Desaulniers, linux-scsi, linux-rdma, oss-drivers, bridge,
	linux-security-module, amd-gfx, linux-stm32, cluster-devel,
	linux-acpi, coreteam, intel-wired-lan, linux-input, Miguel Ojeda,
	tipc-discussion, linux-ext4, linux-media, linux-watchdog,
	selinux, linux-arm-msm, intel-gfx, linux-geode, linux-can,
	linux-block, linux-gpio, op-tee, linux-mediatek, xen-devel,
	nouveau, linux-hams, ceph-devel, virtualization,
	linux-arm-kernel, linux-hwmon, x86, linux-nfs, GR-Linux-NIC-Dev,
	linux-mm, netdev, linux-decnet-user, linux-mmc,
	linux-renesas-soc, linux-sctp, linux-usb, netfilter-devel,
	linux-crypto, patches, linux-integrity, target-devel,
	linux-hardening, Jonathan Cameron, Greg KH

On Mon, 2020-11-23 at 07:03 -0600, Gustavo A. R. Silva wrote:
> On Sun, Nov 22, 2020 at 11:53:55AM -0800, James Bottomley wrote:
> > On Sun, 2020-11-22 at 11:22 -0800, Joe Perches wrote:
> > > On Sun, 2020-11-22 at 11:12 -0800, James Bottomley wrote:
> > > > On Sun, 2020-11-22 at 10:25 -0800, Joe Perches wrote:
> > > > > On Sun, 2020-11-22 at 10:21 -0800, James Bottomley wrote:
> > > > > > Please tell me our reward for all this effort isn't a
> > > > > > single missing error print.
> > > > > 
> > > > > There were quite literally dozens of logical defects found
> > > > > by the fallthrough additions.  Very few were logging only.
> > > > 
> > > > So can you give us the best examples (or indeed all of them if
> > > > someone is keeping score)?  hopefully this isn't a US election
> > > > situation ...
> > > 
> > > Gustavo?  Are you running for congress now?
> > > 
> > > https://lwn.net/Articles/794944/
> > 
> > That's 21 reported fixes of which about 50% seem to produce no
> > change in code behaviour at all, a quarter seem to have no user
> > visible effect with the remaining quarter producing unexpected
> > errors on obscure configuration parameters, which is why no-one
> > really noticed them before.
> 
> The really important point here is the number of bugs this has
> prevented and will prevent in the future. See an example of this,
> below:
> 
> https://lore.kernel.org/linux-iio/20190813135802.GB27392@kroah.com/

I think this falls into the same category as the other six bugs: it
changes the output/input for parameters but no-one has really noticed,
usually because the command is obscure or the bias effect is minor.

> This work is still relevant, even if the total number of issues/bugs
> we find in the process is zero (which is not the case).

Really, no ... something which produces no improvement has no value at
all ... we really shouldn't be wasting maintainer time with it because
it has a cost to merge.  I'm not sure we understand where the balance
lies in value vs cost to merge but I am confident in the zero value
case.

> "The sucky thing about doing hard work to deploy hardening is that
> the result is totally invisible by definition (things not happening)
> [..]"
> - Dmitry Vyukov

Really, no.  Something that can't be measured at all doesn't exist.

And actually hardening is one of those things you can measure (which I
do have to admit isn't true for everything in the security space) ...
it's number of exploitable bugs found before you did it vs number of
exploitable bugs found after you did it.  Usually hardening eliminates
a class of bug, so the way I've measured hardening before is to go
through the CVE list for the last couple of years for product X, find
all the bugs that are of the class we're looking to eliminate and say
if we had hardened X against this class of bug we'd have eliminated Y%
of the exploits.  It can be quite impressive if Y is a suitably big
number.

James



^ permalink raw reply	[flat|nested] 73+ messages in thread

* Re: [PATCH 000/141] Fix fall-through warnings for Clang
  2020-11-23 15:58                 ` James Bottomley
  2020-11-23 16:24                   ` Rafael J. Wysocki
@ 2020-11-23 16:32                   ` Joe Perches
  2020-11-23 18:56                   ` Miguel Ojeda
  2020-11-25  9:01                   ` Sean Young
  3 siblings, 0 replies; 73+ messages in thread
From: Joe Perches @ 2020-11-23 16:32 UTC (permalink / raw)
  To: James Bottomley, Miguel Ojeda
  Cc: Kees Cook, Jakub Kicinski, Gustavo A. R. Silva, linux-kernel,
	alsa-devel, amd-gfx, bridge, ceph-devel, cluster-devel, coreteam,
	devel, dm-devel, drbd-dev, dri-devel, GR-everest-linux-l2,
	GR-Linux-NIC-Dev, intel-gfx, intel-wired-lan, keyrings,
	linux1394-devel, linux-acpi, linux-afs, Linux ARM, linux-arm-msm,
	linux-atm-general, linux-block, linux-can, linux-cifs,
	Linux Crypto Mailing List, linux-decnet-user,
	Ext4 Developers List, linux-fbdev, linux-geode, linux-gpio,
	linux-hams, linux-hwmon, linux-i3c, linux-ide, linux-iio,
	linux-input, linux-integrity, linux-mediatek,
	Linux Media Mailing List, linux-mmc, Linux-MM, linux-mtd,
	linux-nfs, linux-rdma, linux-renesas-soc, linux-scsi, linux-sctp,
	linux-security-module, linux-stm32, linux-usb, linux-watchdog,
	linux-wireless, Network Development, netfilter-devel, nouveau,
	op-tee, oss-drivers, patches, rds-devel, reiserfs-devel,
	samba-technical, selinux, target-devel, tipc-discussion,
	usb-storage, virtualization, wcn36xx,
	maintainer:X86 ARCHITECTURE (32-BIT AND 64-BIT),
	xen-devel, linux-hardening, Nick Desaulniers, Nathan Chancellor,
	Miguel Ojeda

On Mon, 2020-11-23 at 07:58 -0800, James Bottomley wrote:
> We're also complaining about the inability to recruit maintainers:
> 
> https://www.theregister.com/2020/06/30/hard_to_find_linux_maintainers_says_torvalds/
> 
> And burn out:
> 
> http://antirez.com/news/129

https://www.wired.com/story/open-source-coders-few-tired/

> What I'm actually trying to articulate is a way of measuring value of
> the patch vs cost ... it has nothing really to do with who foots the
> actual bill.

It's unclear how to measure value in consistency.

But one way that costs can be reduced is by automation and _not_
involving maintainers when the patch itself is provably correct.

> One thesis I'm actually starting to formulate is that this continual
> devaluing of maintainers is why we have so much difficulty keeping and
> recruiting them.

The linux kernel has something like 1500 different maintainers listed
in the MAINTAINERS file.  That's not a trivial number.

$ git grep '^M:' MAINTAINERS | sort | uniq -c | wc -l
1543
$ git grep '^M:' MAINTAINERS| cut -f1 -d'<' | sort | uniq -c | wc -l
1446

I think the question you are asking is about trust and how it
effects development.

And back to that wired story, the actual number of what you might
be considering to be maintainers is likely less than 10% of the
listed numbers above.



^ permalink raw reply	[flat|nested] 73+ messages in thread

* Re: [PATCH 000/141] Fix fall-through warnings for Clang
  2020-11-23 15:58                 ` James Bottomley
  2020-11-23 16:24                   ` Rafael J. Wysocki
  2020-11-23 16:32                   ` Joe Perches
@ 2020-11-23 18:56                   ` Miguel Ojeda
  2020-11-23 20:37                     ` James Bottomley
  2020-11-25  9:01                   ` Sean Young
  3 siblings, 1 reply; 73+ messages in thread
From: Miguel Ojeda @ 2020-11-23 18:56 UTC (permalink / raw)
  To: James Bottomley
  Cc: Kees Cook, Jakub Kicinski, Gustavo A. R. Silva, linux-kernel,
	alsa-devel, amd-gfx, bridge, ceph-devel, cluster-devel, coreteam,
	devel, dm-devel, drbd-dev, dri-devel, GR-everest-linux-l2,
	GR-Linux-NIC-Dev, intel-gfx, intel-wired-lan, keyrings,
	linux1394-devel, linux-acpi, linux-afs, Linux ARM, linux-arm-msm,
	linux-atm-general, linux-block, linux-can, linux-cifs,
	Linux Crypto Mailing List, linux-decnet-user,
	Ext4 Developers List, linux-fbdev, linux-geode, linux-gpio,
	linux-hams, linux-hwmon, linux-i3c, linux-ide, linux-iio,
	linux-input, linux-integrity, linux-mediatek,
	Linux Media Mailing List, linux-mmc, Linux-MM, linux-mtd,
	linux-nfs, linux-rdma, linux-renesas-soc, linux-scsi, linux-sctp,
	linux-security-module, linux-stm32, linux-usb, linux-watchdog,
	linux-wireless, Network Development, netfilter-devel, nouveau,
	op-tee, oss-drivers, patches, rds-devel, reiserfs-devel,
	samba-technical, selinux, target-devel, tipc-discussion,
	usb-storage, virtualization, wcn36xx,
	maintainer:X86 ARCHITECTURE (32-BIT AND 64-BIT),
	xen-devel, linux-hardening, Nick Desaulniers, Nathan Chancellor,
	Miguel Ojeda, Joe Perches

On Mon, Nov 23, 2020 at 4:58 PM James Bottomley
<James.Bottomley@hansenpartnership.com> wrote:
>
> Well, I used git.  It says that as of today in Linus' tree we have 889
> patches related to fall throughs and the first series went in in
> october 2017 ... ignoring a couple of outliers back to February.

I can see ~10k insertions over ~1k commits and 15 years that mention a
fallthrough in the entire repo. That is including some commits (like
the biggest one, 960 insertions) that have nothing to do with C
fallthrough. A single kernel release has an order of magnitude more
changes than this...

But if we do the math, for an author, at even 1 minute per line change
and assuming nothing can be automated at all, it would take 1 month of
work. For maintainers, a couple of trivial lines is noise compared to
many other patches.

In fact, this discussion probably took more time than the time it
would take to review the 200 lines. :-)

> We're also complaining about the inability to recruit maintainers:
>
> https://www.theregister.com/2020/06/30/hard_to_find_linux_maintainers_says_torvalds/
>
> And burn out:
>
> http://antirez.com/news/129

Accepting trivial and useful 1-line patches is not what makes a
voluntary maintainer quit... Thankless work with demanding deadlines is.

> The whole crux of your argument seems to be maintainers' time isn't
> important so we should accept all trivial patches

I have not said that, at all. In fact, I am a voluntary one and I
welcome patches like this. It takes very little effort on my side to
review and it helps the kernel overall. Paid maintainers are the ones
that can take care of big features/reviews.

> What I'm actually trying to articulate is a way of measuring value of
> the patch vs cost ... it has nothing really to do with who foots the
> actual bill.

I understand your point, but you were the one putting it in terms of a
junior FTE. In my view, 1 month-work (worst case) is very much worth
removing a class of errors from a critical codebase.

> One thesis I'm actually starting to formulate is that this continual
> devaluing of maintainers is why we have so much difficulty keeping and
> recruiting them.

That may very well be true, but I don't feel anybody has devalued
maintainers in this discussion.

Cheers,
Miguel

^ permalink raw reply	[flat|nested] 73+ messages in thread

* Re: [PATCH 000/141] Fix fall-through warnings for Clang
  2020-11-20 18:21 [PATCH 000/141] Fix fall-through warnings for Clang Gustavo A. R. Silva
                   ` (3 preceding siblings ...)
  2020-11-20 22:21 ` Miguel Ojeda
@ 2020-11-23 20:03 ` Jason Gunthorpe
  2020-11-24 14:47   ` Gustavo A. R. Silva
       [not found] ` <160616392671.21180.16517492185091399884.b4-ty@kernel.org>
                   ` (2 subsequent siblings)
  7 siblings, 1 reply; 73+ messages in thread
From: Jason Gunthorpe @ 2020-11-23 20:03 UTC (permalink / raw)
  To: Gustavo A. R. Silva
  Cc: linux-kernel, alsa-devel, amd-gfx, bridge, ceph-devel,
	cluster-devel, coreteam, devel, dm-devel, drbd-dev, dri-devel,
	GR-everest-linux-l2, GR-Linux-NIC-Dev, intel-gfx,
	intel-wired-lan, keyrings, linux1394-devel, linux-acpi,
	linux-afs, linux-arm-kernel, linux-arm-msm, linux-atm-general,
	linux-block, linux-can, linux-cifs, linux-crypto,
	linux-decnet-user, linux-ext4, linux-fbdev, linux-geode,
	linux-gpio, linux-hams, linux-hwmon, linux-i3c, linux-ide,
	linux-iio, linux-input, linux-integrity, linux-mediatek,
	linux-media, linux-mmc, linux-mm, linux-mtd, linux-nfs,
	linux-rdma, linux-renesas-soc, linux-scsi, linux-sctp,
	linux-security-module, linux-stm32, linux-usb, linux-watchdog,
	linux-wireless, netdev, netfilter-devel, nouveau, op-tee,
	oss-drivers, patches, rds-devel, reiserfs-devel, samba-technical,
	selinux, target-devel, tipc-discussion, usb-storage,
	virtualization, wcn36xx, x86, xen-devel, linux-hardening,
	Nick Desaulniers, Nathan Chancellor, Miguel Ojeda, Joe Perches,
	Kees Cook

On Fri, Nov 20, 2020 at 12:21:39PM -0600, Gustavo A. R. Silva wrote:

>   IB/hfi1: Fix fall-through warnings for Clang
>   IB/mlx4: Fix fall-through warnings for Clang
>   IB/qedr: Fix fall-through warnings for Clang
>   RDMA/mlx5: Fix fall-through warnings for Clang

I picked these four to the rdma tree, thanks

Jason

^ permalink raw reply	[flat|nested] 73+ messages in thread

* Re: [PATCH 000/141] Fix fall-through warnings for Clang
  2020-11-23 18:56                   ` Miguel Ojeda
@ 2020-11-23 20:37                     ` James Bottomley
  2020-11-25  0:32                       ` Miguel Ojeda
  2020-11-25 10:38                       ` Andy Shevchenko
  0 siblings, 2 replies; 73+ messages in thread
From: James Bottomley @ 2020-11-23 20:37 UTC (permalink / raw)
  To: Miguel Ojeda
  Cc: Kees Cook, Jakub Kicinski, Gustavo A. R. Silva, linux-kernel,
	alsa-devel, amd-gfx, bridge, ceph-devel, cluster-devel, coreteam,
	devel, dm-devel, drbd-dev, dri-devel, GR-everest-linux-l2,
	GR-Linux-NIC-Dev, intel-gfx, intel-wired-lan, keyrings,
	linux1394-devel, linux-acpi, linux-afs, Linux ARM, linux-arm-msm,
	linux-atm-general, linux-block, linux-can, linux-cifs,
	Linux Crypto Mailing List, linux-decnet-user,
	Ext4 Developers List, linux-fbdev, linux-geode, linux-gpio,
	linux-hams, linux-hwmon, linux-i3c, linux-ide, linux-iio,
	linux-input, linux-integrity, linux-mediatek,
	Linux Media Mailing List, linux-mmc, Linux-MM, linux-mtd,
	linux-nfs, linux-rdma, linux-renesas-soc, linux-scsi, linux-sctp,
	linux-security-module, linux-stm32, linux-usb, linux-watchdog,
	linux-wireless, Network Development, netfilter-devel, nouveau,
	op-tee, oss-drivers, patches, rds-devel, reiserfs-devel,
	samba-technical, selinux, target-devel, tipc-discussion,
	usb-storage, virtualization, wcn36xx,
	maintainer:X86 ARCHITECTURE (32-BIT AND 64-BIT),
	xen-devel, linux-hardening, Nick Desaulniers, Nathan Chancellor,
	Miguel Ojeda, Joe Perches

On Mon, 2020-11-23 at 19:56 +0100, Miguel Ojeda wrote:
> On Mon, Nov 23, 2020 at 4:58 PM James Bottomley
> <James.Bottomley@hansenpartnership.com> wrote:
> > Well, I used git.  It says that as of today in Linus' tree we have
> > 889 patches related to fall throughs and the first series went in
> > in october 2017 ... ignoring a couple of outliers back to February.
> 
> I can see ~10k insertions over ~1k commits and 15 years that mention
> a fallthrough in the entire repo. That is including some commits
> (like the biggest one, 960 insertions) that have nothing to do with C
> fallthrough. A single kernel release has an order of magnitude more
> changes than this...
> 
> But if we do the math, for an author, at even 1 minute per line
> change and assuming nothing can be automated at all, it would take 1
> month of work. For maintainers, a couple of trivial lines is noise
> compared to many other patches.

So you think a one line patch should take one minute to produce ... I
really don't think that's grounded in reality.  I suppose a one line
patch only takes a minute to merge with b4 if no-one reviews or tests
it, but that's not really desirable.

> In fact, this discussion probably took more time than the time it
> would take to review the 200 lines. :-)

I'm framing the discussion in terms of the whole series of changes we
have done for fall through, both what's in the tree currently (889
patches) both in terms of the produce and the consumer.  That's what I
used for my figures for cost.

> > We're also complaining about the inability to recruit maintainers:
> > 
> > https://www.theregister.com/2020/06/30/hard_to_find_linux_maintainers_says_torvalds/
> > 
> > And burn out:
> > 
> > http://antirez.com/news/129
> 
> Accepting trivial and useful 1-line patches

Part of what I'm trying to measure is the "and useful" bit because
that's not a given.

> is not what makes a voluntary maintainer quit...

so the proverb "straw which broke the camel's back" uniquely doesn't
apply to maintainers

>  Thankless work with demanding deadlines is.

That's another potential reason, but it doesn't may other reasons less
valid.

> > The whole crux of your argument seems to be maintainers' time isn't
> > important so we should accept all trivial patches
> 
> I have not said that, at all. In fact, I am a voluntary one and I
> welcome patches like this. It takes very little effort on my side to
> review and it helps the kernel overall.

Well, you know, subsystems are very different in terms of the amount of
patches a maintainer has to process per release cycle of the kernel. 
If a maintainer is close to capacity, additional patches, however
trivial, become a problem.  If a maintainer has spare cycles, trivial
patches may look easy.

> Paid maintainers are the ones that can take care of big
> features/reviews.
> 
> > What I'm actually trying to articulate is a way of measuring value
> > of the patch vs cost ... it has nothing really to do with who foots
> > the actual bill.
> 
> I understand your point, but you were the one putting it in terms of
> a junior FTE.

No, I evaluated the producer side in terms of an FTE.  What we're
mostly arguing about here is the consumer side: the maintainers and
people who have to rework their patch sets. I estimated that at 100h.

>  In my view, 1 month-work (worst case) is very much worth
> removing a class of errors from a critical codebase.
> 
> > One thesis I'm actually starting to formulate is that this
> > continual devaluing of maintainers is why we have so much
> > difficulty keeping and recruiting them.
> 
> That may very well be true, but I don't feel anybody has devalued
> maintainers in this discussion.

You seem to be saying that because you find it easy to merge trivial
patches, everyone should.  I'm reminded of a friend long ago who
thought being a Tees River Pilot was a sinecure because he could
navigate the Tees blindfold.  What he forgot, of course, is that just
because it's easy with a trawler doesn't mean it's easy with an oil
tanker.  In fact it takes longer to qualify as a Tees River Pilot than
it does to get a PhD.

James



^ permalink raw reply	[flat|nested] 73+ messages in thread

* Re: [PATCH 057/141] watchdog: Fix fall-through warnings for Clang
  2020-11-21 18:49   ` Guenter Roeck
@ 2020-11-23 22:50     ` Gustavo A. R. Silva
  0 siblings, 0 replies; 73+ messages in thread
From: Gustavo A. R. Silva @ 2020-11-23 22:50 UTC (permalink / raw)
  To: Guenter Roeck
  Cc: Wim Van Sebroeck, linux-watchdog, linux-kernel, linux-hardening

On Sat, Nov 21, 2020 at 10:49:51AM -0800, Guenter Roeck wrote:
> On Fri, Nov 20, 2020 at 12:32:51PM -0600, Gustavo A. R. Silva wrote:
> > In preparation to enable -Wimplicit-fallthrough for Clang, fix a warning
> > by explicitly adding a fallthrough pseudo-keyword instead of letting the
> > code fall through to the next case.
> > 
> > Link: https://github.com/KSPP/linux/issues/115
> > Signed-off-by: Gustavo A. R. Silva <gustavoars@kernel.org>
> > ---
> >  drivers/watchdog/machzwd.c | 1 +
> >  1 file changed, 1 insertion(+)
> > 
> > diff --git a/drivers/watchdog/machzwd.c b/drivers/watchdog/machzwd.c
> > index 743377c5b173..73f2221f6222 100644
> > --- a/drivers/watchdog/machzwd.c
> > +++ b/drivers/watchdog/machzwd.c
> > @@ -174,6 +174,7 @@ static inline void zf_set_timer(unsigned short new, unsigned char n)
> >  		fallthrough;
> >  	case WD2:
> >  		zf_writeb(COUNTER_2, new > 0xff ? 0xff : new);
> > +		fallthrough;
> 
> fallthrough to return ? Oh well, this is an old style driver anyway,
> so I guess who cares.

:)

> Acked-by: Guenter Roeck <linux@roeck-us.net>

Thanks, Guenter.
--
Gustavo

^ permalink raw reply	[flat|nested] 73+ messages in thread

* Re: [PATCH 000/141] Fix fall-through warnings for Clang
  2020-11-23 14:05               ` Miguel Ojeda
@ 2020-11-24  0:58                 ` Finn Thain
  2020-11-24  1:05                   ` Joe Perches
  2020-11-24 23:46                   ` Miguel Ojeda
  0 siblings, 2 replies; 73+ messages in thread
From: Finn Thain @ 2020-11-24  0:58 UTC (permalink / raw)
  To: Miguel Ojeda
  Cc: James Bottomley, Kees Cook, Jakub Kicinski, Gustavo A. R. Silva,
	linux-kernel, alsa-devel, amd-gfx, bridge, ceph-devel,
	cluster-devel, coreteam, devel, dm-devel, drbd-dev, dri-devel,
	GR-everest-linux-l2, GR-Linux-NIC-Dev, intel-gfx,
	intel-wired-lan, keyrings, linux1394-devel, linux-acpi,
	linux-afs, Linux ARM, linux-arm-msm, linux-atm-general,
	linux-block, linux-can, linux-cifs, Linux Crypto Mailing List,
	linux-decnet-user, Ext4 Developers List, linux-fbdev,
	linux-geode, linux-gpio, linux-hams, linux-hwmon, linux-i3c,
	linux-ide, linux-iio, linux-input, linux-integrity,
	linux-mediatek, Linux Media Mailing List, linux-mmc, Linux-MM,
	linux-mtd, linux-nfs, linux-rdma, linux-renesas-soc, linux-scsi,
	linux-sctp, linux-security-module, linux-stm32, linux-usb,
	linux-watchdog, linux-wireless, Network Development,
	netfilter-devel, nouveau, op-tee, oss-drivers, patches,
	rds-devel, reiserfs-devel, samba-technical, selinux,
	target-devel, tipc-discussion, usb-storage, virtualization,
	wcn36xx, maintainer:X86 ARCHITECTURE (32-BIT AND 64-BIT),
	xen-devel, linux-hardening, Nick Desaulniers, Nathan Chancellor,
	Miguel Ojeda, Joe Perches


On Mon, 23 Nov 2020, Miguel Ojeda wrote:

> On Mon, 23 Nov 2020, Finn Thain wrote:
> 
> > On Sun, 22 Nov 2020, Miguel Ojeda wrote:
> > 
> > > 
> > > It isn't that much effort, isn't it? Plus we need to take into 
> > > account the future mistakes that it might prevent, too.
> > 
> > We should also take into account optimisim about future improvements 
> > in tooling.
> > 
> Not sure what you mean here. There is no reliable way to guess what the 
> intention was with a missing fallthrough, even if you parsed whitespace 
> and indentation.
> 

What I meant was that you've used pessimism as if it was fact.

For example, "There is no way to guess what the effect would be if the 
compiler trained programmers to add a knee-jerk 'break' statement to avoid 
a warning".

Moreover, what I meant was that preventing programmer mistakes is a 
problem to be solved by development tools. The idea that retro-fitting new 
language constructs onto mature code is somehow necessary to "prevent 
future mistakes" is entirely questionable.

> > > So even if there were zero problems found so far, it is still a 
> > > positive change.
> > > 
> > 
> > It is if you want to spin it that way.
> > 
> How is that a "spin"? It is a fact that we won't get *implicit* 
> fallthrough mistakes anymore (in particular if we make it a hard error).
> 

Perhaps "handwaving" is a better term?

> > > I would agree if these changes were high risk, though; but they are 
> > > almost trivial.
> > > 
> > 
> > This is trivial:
> > 
> >  case 1:
> >         this();
> > +       fallthrough;
> >  case 2:
> >         that();
> > 
> > But what we inevitably get is changes like this:
> > 
> >  case 3:
> >         this();
> > +       break;
> >  case 4:
> >         hmmm();
> > 
> > Why? Mainly to silence the compiler. Also because the patch author 
> > argued successfully that they had found a theoretical bug, often in 
> > mature code.
> > 
> If someone changes control flow, that is on them. Every kernel developer 
> knows what `break` does.
> 

Sure. And if you put -Wimplicit-fallthrough into the Makefile and if that 
leads to well-intentioned patches that cause regressions, it is partly on 
you.

Have you ever considered the overall cost of the countless 
-Wpresume-incompetence flags?

Perhaps you pay the power bill for a build farm that produces logs that 
no-one reads? Perhaps you've run git bisect, knowing that the compiler 
messages are not interesting? Or compiled software in using a language 
that generates impenetrable messages? If so, here's a tip:

# grep CFLAGS /etc/portage/make.conf 
CFLAGS="... -Wno-all -Wno-extra ..."
CXXFLAGS="${CFLAGS}"

Now allow me some pessimism: the hardware upgrades, gigawatt hours and 
wait time attributable to obligatory static analyses are a net loss.

> > But is anyone keeping score of the regressions? If unreported bugs 
> > count, what about unreported regressions?
> > 
> Introducing `fallthrough` does not change semantics. If you are really 
> keen, you can always compare the objects because the generated code 
> shouldn't change.
> 

No, it's not for me to prove that such patches don't affect code 
generation. That's for the patch author and (unfortunately) for reviewers.

> Cheers,
> Miguel
> 

^ permalink raw reply	[flat|nested] 73+ messages in thread

* Re: [PATCH 000/141] Fix fall-through warnings for Clang
  2020-11-24  0:58                 ` Finn Thain
@ 2020-11-24  1:05                   ` Joe Perches
  2020-11-24  2:48                     ` Finn Thain
  2020-11-24 23:46                   ` Miguel Ojeda
  1 sibling, 1 reply; 73+ messages in thread
From: Joe Perches @ 2020-11-24  1:05 UTC (permalink / raw)
  To: Finn Thain, Miguel Ojeda
  Cc: James Bottomley, Kees Cook, Jakub Kicinski, Gustavo A. R. Silva,
	linux-kernel, alsa-devel, amd-gfx, bridge, ceph-devel,
	cluster-devel, coreteam, devel, dm-devel, drbd-dev, dri-devel,
	GR-everest-linux-l2, GR-Linux-NIC-Dev, intel-gfx,
	intel-wired-lan, keyrings, linux1394-devel, linux-acpi,
	linux-afs, Linux ARM, linux-arm-msm, linux-atm-general,
	linux-block, linux-can, linux-cifs, Linux Crypto Mailing List,
	linux-decnet-user, Ext4 Developers List, linux-fbdev,
	linux-geode, linux-gpio, linux-hams, linux-hwmon, linux-i3c,
	linux-ide, linux-iio, linux-input, linux-integrity,
	linux-mediatek, Linux Media Mailing List, linux-mmc, Linux-MM,
	linux-mtd, linux-nfs, linux-rdma, linux-renesas-soc, linux-scsi,
	linux-sctp, linux-security-module, linux-stm32, linux-usb,
	linux-watchdog, linux-wireless, Network Development,
	netfilter-devel, nouveau, op-tee, oss-drivers, patches,
	rds-devel, reiserfs-devel, samba-technical, selinux,
	target-devel, tipc-discussion, usb-storage, virtualization,
	wcn36xx, maintainer:X86 ARCHITECTURE (32-BIT AND 64-BIT),
	xen-devel, linux-hardening, Nick Desaulniers, Nathan Chancellor,
	Miguel Ojeda

On Tue, 2020-11-24 at 11:58 +1100, Finn Thain wrote:
> it's not for me to prove that such patches don't affect code 
> generation. That's for the patch author and (unfortunately) for reviewers.

Ideally, that proof would be provided by the compilation system itself
and not patch authors nor reviewers nor maintainers.

Unfortunately gcc does not guarantee repeatability or deterministic output.
To my knowledge, neither does clang.



^ permalink raw reply	[flat|nested] 73+ messages in thread

* Re: [PATCH 000/141] Fix fall-through warnings for Clang
  2020-11-22 16:17       ` Kees Cook
  2020-11-22 18:21         ` James Bottomley
@ 2020-11-24  1:32         ` Nick Desaulniers
  2020-11-24 21:25           ` Kees Cook
  2020-12-01 14:08           ` Dan Carpenter
  2020-12-01 14:04         ` Dan Carpenter
  2 siblings, 2 replies; 73+ messages in thread
From: Nick Desaulniers @ 2020-11-24  1:32 UTC (permalink / raw)
  To: Kees Cook
  Cc: Jakub Kicinski, Gustavo A. R. Silva, LKML, alsa-devel,
	amd-gfx list, bridge, ceph-devel, cluster-devel, coreteam, devel,
	dm-devel, drbd-dev, dri-devel, GR-everest-linux-l2,
	GR-Linux-NIC-Dev, intel-gfx, intel-wired-lan, keyrings,
	linux1394-devel, linux-acpi, linux-afs, Linux ARM, linux-arm-msm,
	linux-atm-general, linux-block, linux-can, linux-cifs,
	open list:HARDWARE RANDOM NUMBER GENERATOR CORE,
	linux-decnet-user, linux-ext4, linux-fbdev, linux-geode,
	linux-gpio, linux-hams, linux-hwmon, linux-i3c, linux-ide,
	linux-iio, linux-input, linux-integrity, linux-mediatek,
	linux-media, linux-mmc, Linux Memory Management List, linux-mtd,
	linux-nfs, linux-rdma, Linux-Renesas, linux-scsi, linux-sctp,
	linux-security-module, linux-stm32, linux-usb, linux-watchdog,
	linux-wireless, Network Development, netfilter-devel, nouveau,
	op-tee, oss-drivers, patches, rds-devel, reiserfs-devel,
	samba-technical, selinux, target-devel, tipc-discussion,
	usb-storage, virtualization, wcn36xx,
	maintainer:X86 ARCHITECTURE (32-BIT AND 64-BIT),
	xen-devel, linux-hardening, Nathan Chancellor, Miguel Ojeda,
	Joe Perches

On Sun, Nov 22, 2020 at 8:17 AM Kees Cook <keescook@chromium.org> wrote:
>
> On Fri, Nov 20, 2020 at 11:51:42AM -0800, Jakub Kicinski wrote:
> > If none of the 140 patches here fix a real bug, and there is no change
> > to machine code then it sounds to me like a W=2 kind of a warning.
>
> FWIW, this series has found at least one bug so far:
> https://lore.kernel.org/lkml/CAFCwf11izHF=g1mGry1fE5kvFFFrxzhPSM6qKAO8gxSp=Kr_CQ@mail.gmail.com/

So looks like the bulk of these are:
switch (x) {
  case 0:
    ++x;
  default:
    break;
}

I have a patch that fixes those up for clang:
https://reviews.llvm.org/D91895

There's 3 other cases that don't quite match between GCC and Clang I
observe in the kernel:
switch (x) {
  case 0:
    ++x;
  default:
    goto y;
}
y:;

switch (x) {
  case 0:
    ++x;
  default:
    return;
}

switch (x) {
  case 0:
    ++x;
  default:
    ;
}

Based on your link, and Nathan's comment on my patch, maybe Clang
should continue to warn for the above (at least the `default: return;`
case) and GCC should change?  While the last case looks harmless,
there were only 1 or 2 across the tree in my limited configuration
testing; I really think we should just add `break`s for those.
-- 
Thanks,
~Nick Desaulniers

^ permalink raw reply	[flat|nested] 73+ messages in thread

* Re: [PATCH 000/141] Fix fall-through warnings for Clang
  2020-11-24  1:05                   ` Joe Perches
@ 2020-11-24  2:48                     ` Finn Thain
  0 siblings, 0 replies; 73+ messages in thread
From: Finn Thain @ 2020-11-24  2:48 UTC (permalink / raw)
  To: Joe Perches
  Cc: Miguel Ojeda, James Bottomley, Kees Cook, Jakub Kicinski,
	Gustavo A. R. Silva, linux-kernel, alsa-devel, amd-gfx, bridge,
	ceph-devel, cluster-devel, coreteam, devel, dm-devel, drbd-dev,
	dri-devel, GR-everest-linux-l2, GR-Linux-NIC-Dev, intel-gfx,
	intel-wired-lan, keyrings, linux1394-devel, linux-acpi,
	linux-afs, Linux ARM, linux-arm-msm, linux-atm-general,
	linux-block, linux-can, linux-cifs, Linux Crypto Mailing List,
	linux-decnet-user, Ext4 Developers List, linux-fbdev,
	linux-geode, linux-gpio, linux-hams, linux-hwmon, linux-i3c,
	linux-ide, linux-iio, linux-input, linux-integrity,
	linux-mediatek, Linux Media Mailing List, linux-mmc, Linux-MM,
	linux-mtd, linux-nfs, linux-rdma, linux-renesas-soc, linux-scsi,
	linux-sctp, linux-security-module, linux-stm32, linux-usb,
	linux-watchdog, linux-wireless, Network Development,
	netfilter-devel, nouveau, op-tee, oss-drivers, patches,
	rds-devel, reiserfs-devel, samba-technical, selinux,
	target-devel, tipc-discussion, usb-storage, virtualization,
	wcn36xx, maintainer:X86 ARCHITECTURE (32-BIT AND 64-BIT),
	xen-devel, linux-hardening, Nick Desaulniers, Nathan Chancellor,
	Miguel Ojeda


On Mon, 23 Nov 2020, Joe Perches wrote:

> On Tue, 2020-11-24 at 11:58 +1100, Finn Thain wrote:
> > it's not for me to prove that such patches don't affect code 
> > generation. That's for the patch author and (unfortunately) for 
> > reviewers.
> 
> Ideally, that proof would be provided by the compilation system itself 
> and not patch authors nor reviewers nor maintainers.
> 
> Unfortunately gcc does not guarantee repeatability or deterministic 
> output. To my knowledge, neither does clang.
> 

Yes, I've said the same thing myself. But having attempted it, I now think 
this is a hard problem. YMMV.

https://lore.kernel.org/linux-scsi/alpine.LNX.2.22.394.2004281017310.12@nippy.intranet/
https://lore.kernel.org/linux-scsi/alpine.LNX.2.22.394.2005211358460.8@nippy.intranet/

^ permalink raw reply	[flat|nested] 73+ messages in thread

* Re: [PATCH 000/141] Fix fall-through warnings for Clang
  2020-11-23 20:03 ` Jason Gunthorpe
@ 2020-11-24 14:47   ` Gustavo A. R. Silva
  0 siblings, 0 replies; 73+ messages in thread
From: Gustavo A. R. Silva @ 2020-11-24 14:47 UTC (permalink / raw)
  To: Jason Gunthorpe
  Cc: linux-kernel, alsa-devel, amd-gfx, bridge, ceph-devel,
	cluster-devel, coreteam, devel, dm-devel, drbd-dev, dri-devel,
	GR-everest-linux-l2, GR-Linux-NIC-Dev, intel-gfx,
	intel-wired-lan, keyrings, linux1394-devel, linux-acpi,
	linux-afs, linux-arm-kernel, linux-arm-msm, linux-atm-general,
	linux-block, linux-can, linux-cifs, linux-crypto,
	linux-decnet-user, linux-ext4, linux-fbdev, linux-geode,
	linux-gpio, linux-hams, linux-hwmon, linux-i3c, linux-ide,
	linux-iio, linux-input, linux-integrity, linux-mediatek,
	linux-media, linux-mmc, linux-mm, linux-mtd, linux-nfs,
	linux-rdma, linux-renesas-soc, linux-scsi, linux-sctp,
	linux-security-module, linux-stm32, linux-usb, linux-watchdog,
	linux-wireless, netdev, netfilter-devel, nouveau, op-tee,
	oss-drivers, patches, rds-devel, reiserfs-devel, samba-technical,
	selinux, target-devel, tipc-discussion, usb-storage,
	virtualization, wcn36xx, x86, xen-devel, linux-hardening,
	Nick Desaulniers, Nathan Chancellor, Miguel Ojeda, Joe Perches,
	Kees Cook

On Mon, Nov 23, 2020 at 04:03:45PM -0400, Jason Gunthorpe wrote:
> On Fri, Nov 20, 2020 at 12:21:39PM -0600, Gustavo A. R. Silva wrote:
> 
> >   IB/hfi1: Fix fall-through warnings for Clang
> >   IB/mlx4: Fix fall-through warnings for Clang
> >   IB/qedr: Fix fall-through warnings for Clang
> >   RDMA/mlx5: Fix fall-through warnings for Clang
> 
> I picked these four to the rdma tree, thanks

Awesome. :)

Thank you, Jason.
--
Gustavo

^ permalink raw reply	[flat|nested] 73+ messages in thread

* Re: [PATCH 000/141] Fix fall-through warnings for Clang
       [not found] ` <160616392671.21180.16517492185091399884.b4-ty@kernel.org>
@ 2020-11-24 14:47   ` Gustavo A. R. Silva
  0 siblings, 0 replies; 73+ messages in thread
From: Gustavo A. R. Silva @ 2020-11-24 14:47 UTC (permalink / raw)
  To: Mark Brown
  Cc: linux-kernel, linux-crypto, linux-sctp, Nathan Chancellor,
	linux-hardening, usb-storage, linux-block, linux-security-module,
	bridge, GR-Linux-NIC-Dev, rds-devel, dri-devel, linux-media,
	wcn36xx, linux-wireless, linux-mediatek, reiserfs-devel,
	oss-drivers, linux-arm-kernel, alsa-devel, virtualization,
	Joe Perches, patches, linux-gpio, linux-hwmon, linux-cifs,
	coreteam, Kees Cook, Nick Desaulniers, linux-scsi, linux-afs,
	netfilter-devel, linux-geode, drbd-dev, linux-ext4, linux-hams,
	target-devel, samba-technical, tipc-discussion, linux-stm32,
	linux-renesas-soc, linux-input, amd-gfx, linux-nfs, devel,
	selinux, linux-atm-general, linux-iio, linux-i3c, Miguel Ojeda,
	linux-can, linux-integrity, GR-everest-linux-l2, keyrings,
	intel-wired-lan, linux-usb, nouveau, x86, xen-devel, linux-mm,
	cluster-devel, linux1394-devel, linux-decnet-user, op-tee,
	linux-ide, intel-gfx, linux-acpi, dm-devel, linux-watchdog,
	linux-rdma, linux-mtd, ceph-devel, linux-arm-msm, linux-mmc,
	linux-fbdev, netdev

On Mon, Nov 23, 2020 at 08:38:46PM +0000, Mark Brown wrote:
> On Fri, 20 Nov 2020 12:21:39 -0600, Gustavo A. R. Silva wrote:
> > This series aims to fix almost all remaining fall-through warnings in
> > order to enable -Wimplicit-fallthrough for Clang.
> > 
> > In preparation to enable -Wimplicit-fallthrough for Clang, explicitly
> > add multiple break/goto/return/fallthrough statements instead of just
> > letting the code fall through to the next case.
> > 
> > [...]
> 
> Applied to
> 
>    https://git.kernel.org/pub/scm/linux/kernel/git/broonie/regulator.git for-next
> 
> Thanks!
> 
> [1/1] regulator: as3722: Fix fall-through warnings for Clang
>       commit: b52b417ccac4fae5b1f2ec4f1d46eb91e4493dc5

Thank you, Mark.
--
Gustavo

^ permalink raw reply	[flat|nested] 73+ messages in thread

* Re: [PATCH 000/141] Fix fall-through warnings for Clang
  2020-11-24  1:32         ` Nick Desaulniers
@ 2020-11-24 21:25           ` Kees Cook
  2020-11-25 23:02             ` Edward Cree
  2020-12-01 14:08           ` Dan Carpenter
  1 sibling, 1 reply; 73+ messages in thread
From: Kees Cook @ 2020-11-24 21:25 UTC (permalink / raw)
  To: Nick Desaulniers
  Cc: Jakub Kicinski, Gustavo A. R. Silva, LKML, alsa-devel,
	amd-gfx list, bridge, ceph-devel, cluster-devel, coreteam, devel,
	dm-devel, drbd-dev, dri-devel, GR-everest-linux-l2,
	GR-Linux-NIC-Dev, intel-gfx, intel-wired-lan, keyrings,
	linux1394-devel, linux-acpi, linux-afs, Linux ARM, linux-arm-msm,
	linux-atm-general, linux-block, linux-can, linux-cifs,
	open list:HARDWARE RANDOM NUMBER GENERATOR CORE,
	linux-decnet-user, linux-ext4, linux-fbdev, linux-geode,
	linux-gpio, linux-hams, linux-hwmon, linux-i3c, linux-ide,
	linux-iio, linux-input, linux-integrity, linux-mediatek,
	linux-media, linux-mmc, Linux Memory Management List, linux-mtd,
	linux-nfs, linux-rdma, Linux-Renesas, linux-scsi, linux-sctp,
	linux-security-module, linux-stm32, linux-usb, linux-watchdog,
	linux-wireless, Network Development, netfilter-devel, nouveau,
	op-tee, oss-drivers, patches, rds-devel, reiserfs-devel,
	samba-technical, selinux, target-devel, tipc-discussion,
	usb-storage, virtualization, wcn36xx,
	maintainer:X86 ARCHITECTURE (32-BIT AND 64-BIT),
	xen-devel, linux-hardening, Nathan Chancellor, Miguel Ojeda,
	Joe Perches

On Mon, Nov 23, 2020 at 05:32:51PM -0800, Nick Desaulniers wrote:
> On Sun, Nov 22, 2020 at 8:17 AM Kees Cook <keescook@chromium.org> wrote:
> >
> > On Fri, Nov 20, 2020 at 11:51:42AM -0800, Jakub Kicinski wrote:
> > > If none of the 140 patches here fix a real bug, and there is no change
> > > to machine code then it sounds to me like a W=2 kind of a warning.
> >
> > FWIW, this series has found at least one bug so far:
> > https://lore.kernel.org/lkml/CAFCwf11izHF=g1mGry1fE5kvFFFrxzhPSM6qKAO8gxSp=Kr_CQ@mail.gmail.com/
> 
> So looks like the bulk of these are:
> switch (x) {
>   case 0:
>     ++x;
>   default:
>     break;
> }
> 
> I have a patch that fixes those up for clang:
> https://reviews.llvm.org/D91895

I still think this isn't right -- it's a case statement that runs off
the end without an explicit flow control determination. I think Clang is
right to warn for these, and GCC should also warn.

-- 
Kees Cook

^ permalink raw reply	[flat|nested] 73+ messages in thread

* Re: [Intel-wired-lan] [PATCH 000/141] Fix fall-through warnings for Clang
  2020-11-23 16:31                     ` James Bottomley
@ 2020-11-24 21:32                       ` Kees Cook
  2020-11-24 22:24                         ` Finn Thain
  2020-11-25  7:05                         ` James Bottomley
  0 siblings, 2 replies; 73+ messages in thread
From: Kees Cook @ 2020-11-24 21:32 UTC (permalink / raw)
  To: James Bottomley
  Cc: Gustavo A. R. Silva, Joe Perches, Jakub Kicinski, alsa-devel,
	linux-atm-general, reiserfs-devel, linux-iio, linux-wireless,
	linux-fbdev, dri-devel, linux-kernel, Nathan Chancellor,
	linux-ide, dm-devel, keyrings, linux-mtd, GR-everest-linux-l2,
	wcn36xx, samba-technical, linux-i3c, linux1394-devel, linux-afs,
	usb-storage, drbd-dev, devel, linux-cifs, rds-devel,
	Nick Desaulniers, linux-scsi, linux-rdma, oss-drivers, bridge,
	linux-security-module, amd-gfx, linux-stm32, cluster-devel,
	linux-acpi, coreteam, intel-wired-lan, linux-input, Miguel Ojeda,
	tipc-discussion, linux-ext4, linux-media, linux-watchdog,
	selinux, linux-arm-msm, intel-gfx, linux-geode, linux-can,
	linux-block, linux-gpio, op-tee, linux-mediatek, xen-devel,
	nouveau, linux-hams, ceph-devel, virtualization,
	linux-arm-kernel, linux-hwmon, x86, linux-nfs, GR-Linux-NIC-Dev,
	linux-mm, netdev, linux-decnet-user, linux-mmc,
	linux-renesas-soc, linux-sctp, linux-usb, netfilter-devel,
	linux-crypto, patches, linux-integrity, target-devel,
	linux-hardening, Jonathan Cameron, Greg KH

On Mon, Nov 23, 2020 at 08:31:30AM -0800, James Bottomley wrote:
> Really, no ... something which produces no improvement has no value at
> all ... we really shouldn't be wasting maintainer time with it because
> it has a cost to merge.  I'm not sure we understand where the balance
> lies in value vs cost to merge but I am confident in the zero value
> case.

What? We can't measure how many future bugs aren't introduced because the
kernel requires explicit case flow-control statements for all new code.

We already enable -Wimplicit-fallthrough globally, so that's not the
discussion. The issue is that Clang is (correctly) even more strict
than GCC for this, so these are the remaining ones to fix for full Clang
coverage too.

People have spent more time debating this already than it would have
taken to apply the patches. :)

This is about robustness and language wrangling. It's a big code-base,
and this is the price of our managing technical debt for permanent
robustness improvements. (The numbers I ran from Gustavo's earlier
patches were that about 10% of the places adjusted were identified as
legitimate bugs being fixed. This final series may be lower, but there
are still bugs being found from it -- we need to finish this and shut
the door on it for good.)

-- 
Kees Cook

^ permalink raw reply	[flat|nested] 73+ messages in thread

* Re: [Intel-wired-lan] [PATCH 000/141] Fix fall-through warnings for Clang
  2020-11-24 21:32                       ` Kees Cook
@ 2020-11-24 22:24                         ` Finn Thain
  2020-11-24 23:15                           ` Miguel Ojeda
  2020-11-25  7:05                         ` James Bottomley
  1 sibling, 1 reply; 73+ messages in thread
From: Finn Thain @ 2020-11-24 22:24 UTC (permalink / raw)
  To: Kees Cook
  Cc: James Bottomley, Gustavo A. R. Silva, Joe Perches,
	Jakub Kicinski, alsa-devel, linux-atm-general, reiserfs-devel,
	linux-iio, linux-wireless, linux-fbdev, dri-devel, linux-kernel,
	Nathan Chancellor, linux-ide, dm-devel, keyrings, linux-mtd,
	GR-everest-linux-l2, wcn36xx, samba-technical, linux-i3c,
	linux1394-devel, linux-afs, usb-storage, drbd-dev, devel,
	linux-cifs, rds-devel, Nick Desaulniers, linux-scsi, linux-rdma,
	oss-drivers, bridge, linux-security-module, amd-gfx, linux-stm32,
	cluster-devel, linux-acpi, coreteam, intel-wired-lan,
	linux-input, Miguel Ojeda, tipc-discussion, linux-ext4,
	linux-media, linux-watchdog, selinux, linux-arm-msm, intel-gfx,
	linux-geode, linux-can, linux-block, linux-gpio, op-tee,
	linux-mediatek, xen-devel, nouveau, linux-hams, ceph-devel,
	virtualization, linux-arm-kernel, linux-hwmon, x86, linux-nfs,
	GR-Linux-NIC-Dev, linux-mm, netdev, linux-decnet-user, linux-mmc,
	linux-renesas-soc, linux-sctp, linux-usb, netfilter-devel,
	linux-crypto, patches, linux-integrity, target-devel,
	linux-hardening, Jonathan Cameron, Greg KH

On Tue, 24 Nov 2020, Kees Cook wrote:

> On Mon, Nov 23, 2020 at 08:31:30AM -0800, James Bottomley wrote:
> > Really, no ... something which produces no improvement has no value at 
> > all ... we really shouldn't be wasting maintainer time with it because 
> > it has a cost to merge.  I'm not sure we understand where the balance 
> > lies in value vs cost to merge but I am confident in the zero value 
> > case.
> 
> What? We can't measure how many future bugs aren't introduced because 
> the kernel requires explicit case flow-control statements for all new 
> code.
> 

These statements are not "missing" unless you presume that code written 
before the latest de facto language spec was written should somehow be 
held to that spec.

If the 'fallthrough' statement is not part of the latest draft spec then 
we should ask why not before we embrace it. Being that the kernel still 
prefers -std=gnu89 you might want to consider what has prevented 
-std=gnu99 or -std=gnu2x etc.

> We already enable -Wimplicit-fallthrough globally, so that's not the 
> discussion. The issue is that Clang is (correctly) even more strict than 
> GCC for this, so these are the remaining ones to fix for full Clang 
> coverage too.
> 

Seems to me you should be patching the compiler.

When you have consensus among the language lawyers you'll have more 
credibility with those being subjected to enforcement.

^ permalink raw reply	[flat|nested] 73+ messages in thread

* Re: [Intel-wired-lan] [PATCH 000/141] Fix fall-through warnings for Clang
  2020-11-24 22:24                         ` Finn Thain
@ 2020-11-24 23:15                           ` Miguel Ojeda
  2020-11-24 23:53                             ` Finn Thain
  0 siblings, 1 reply; 73+ messages in thread
From: Miguel Ojeda @ 2020-11-24 23:15 UTC (permalink / raw)
  To: Finn Thain
  Cc: Kees Cook, James Bottomley, Gustavo A. R. Silva, Joe Perches,
	Jakub Kicinski, alsa-devel, linux-atm-general, reiserfs-devel,
	linux-iio, linux-wireless, linux-fbdev, dri-devel, linux-kernel,
	Nathan Chancellor, linux-ide, dm-devel, keyrings, linux-mtd,
	GR-everest-linux-l2, wcn36xx, samba-technical, linux-i3c,
	linux1394-devel, linux-afs, usb-storage, drbd-dev, devel,
	linux-cifs, rds-devel, Nick Desaulniers, linux-scsi, linux-rdma,
	oss-drivers, bridge, linux-security-module, amd-gfx, linux-stm32,
	cluster-devel, linux-acpi, coreteam, intel-wired-lan,
	linux-input, Miguel Ojeda, tipc-discussion, Ext4 Developers List,
	Linux Media Mailing List, linux-watchdog, selinux, linux-arm-msm,
	intel-gfx, linux-geode, linux-can, linux-block, linux-gpio,
	op-tee, linux-mediatek, xen-devel, nouveau, linux-hams,
	ceph-devel, virtualization, Linux ARM, linux-hwmon,
	maintainer:X86 ARCHITECTURE (32-BIT AND 64-BIT),
	linux-nfs, GR-Linux-NIC-Dev, Linux-MM, Network Development,
	linux-decnet-user, linux-mmc, linux-renesas-soc, linux-sctp,
	linux-usb, netfilter-devel, Linux Crypto Mailing List, patches,
	linux-integrity, target-devel, linux-hardening, Jonathan Cameron,
	Greg KH

On Tue, Nov 24, 2020 at 11:24 PM Finn Thain <fthain@telegraphics.com.au> wrote:
>
> These statements are not "missing" unless you presume that code written
> before the latest de facto language spec was written should somehow be
> held to that spec.

There is no "language spec" the kernel adheres to. Even if it did,
kernel code is not frozen. If an improvement is found, it should be
applied.

> If the 'fallthrough' statement is not part of the latest draft spec then
> we should ask why not before we embrace it. Being that the kernel still
> prefers -std=gnu89 you might want to consider what has prevented
> -std=gnu99 or -std=gnu2x etc.

The C standard has nothing to do with this. We use compiler extensions
of several kinds, for many years. Even discounting those extensions,
the kernel is not even conforming to C due to e.g. strict aliasing. I
am not sure what you are trying to argue here.

But, since you insist: yes, the `fallthrough` attribute is in the
current C2x draft.

Cheers,
Miguel

^ permalink raw reply	[flat|nested] 73+ messages in thread

* Re: [PATCH 000/141] Fix fall-through warnings for Clang
  2020-11-24  0:58                 ` Finn Thain
  2020-11-24  1:05                   ` Joe Perches
@ 2020-11-24 23:46                   ` Miguel Ojeda
  1 sibling, 0 replies; 73+ messages in thread
From: Miguel Ojeda @ 2020-11-24 23:46 UTC (permalink / raw)
  To: Finn Thain
  Cc: James Bottomley, Kees Cook, Jakub Kicinski, Gustavo A. R. Silva,
	linux-kernel, alsa-devel, amd-gfx, bridge, ceph-devel,
	cluster-devel, coreteam, devel, dm-devel, drbd-dev, dri-devel,
	GR-everest-linux-l2, GR-Linux-NIC-Dev, intel-gfx,
	intel-wired-lan, keyrings, linux1394-devel, linux-acpi,
	linux-afs, Linux ARM, linux-arm-msm, linux-atm-general,
	linux-block, linux-can, linux-cifs, Linux Crypto Mailing List,
	linux-decnet-user, Ext4 Developers List, linux-fbdev,
	linux-geode, linux-gpio, linux-hams, linux-hwmon, linux-i3c,
	linux-ide, linux-iio, linux-input, linux-integrity,
	linux-mediatek, Linux Media Mailing List, linux-mmc, Linux-MM,
	linux-mtd, linux-nfs, linux-rdma, linux-renesas-soc, linux-scsi,
	linux-sctp, linux-security-module, linux-stm32, linux-usb,
	linux-watchdog, linux-wireless, Network Development,
	netfilter-devel, nouveau, op-tee, oss-drivers, patches,
	rds-devel, reiserfs-devel, samba-technical, selinux,
	target-devel, tipc-discussion, usb-storage, virtualization,
	wcn36xx, maintainer:X86 ARCHITECTURE (32-BIT AND 64-BIT),
	xen-devel, linux-hardening, Nick Desaulniers, Nathan Chancellor,
	Miguel Ojeda, Joe Perches

On Tue, Nov 24, 2020 at 1:58 AM Finn Thain <fthain@telegraphics.com.au> wrote:
>
> What I meant was that you've used pessimism as if it was fact.

"future mistakes that it might prevent" is neither pessimism nor states a fact.

> For example, "There is no way to guess what the effect would be if the
> compiler trained programmers to add a knee-jerk 'break' statement to avoid
> a warning".

It is only knee-jerk if you think you are infallible.

> Moreover, what I meant was that preventing programmer mistakes is a
> problem to be solved by development tools

This warning comes from a development tool -- the compiler.

> The idea that retro-fitting new
> language constructs onto mature code is somehow necessary to "prevent
> future mistakes" is entirely questionable.

The kernel is not a frozen codebase.

Further, "mature code vs. risk of change" arguments don't apply here
because the semantics of the program and binary output isn't changing.

> Sure. And if you put -Wimplicit-fallthrough into the Makefile and if that
> leads to well-intentioned patches that cause regressions, it is partly on
> you.

Again: adding a `fallthrough` does not change the program semantics.
If you are a maintainer and want to cross-check, compare the codegen.

> Have you ever considered the overall cost of the countless
> -Wpresume-incompetence flags?

Yeah: negative. On the other hand, the overall cost of the countless
-fI-am-infallible flags is very noticeable.

> Perhaps you pay the power bill for a build farm that produces logs that
> no-one reads? Perhaps you've run git bisect, knowing that the compiler
> messages are not interesting? Or compiled software in using a language
> that generates impenetrable messages? If so, here's a tip:
>
> # grep CFLAGS /etc/portage/make.conf
> CFLAGS="... -Wno-all -Wno-extra ..."
> CXXFLAGS="${CFLAGS}"
>
> Now allow me some pessimism: the hardware upgrades, gigawatt hours and
> wait time attributable to obligatory static analyses are a net loss.

If you really believe compiler warnings and static analysis are
useless and costly, I think there is not much point in continuing the
discussion.

> No, it's not for me to prove that such patches don't affect code
> generation. That's for the patch author and (unfortunately) for reviewers.

I was not asking you to prove it. I am stating that proving it is very easy.

Cheers,
Miguel

^ permalink raw reply	[flat|nested] 73+ messages in thread

* Re: [Intel-wired-lan] [PATCH 000/141] Fix fall-through warnings for Clang
  2020-11-24 23:15                           ` Miguel Ojeda
@ 2020-11-24 23:53                             ` Finn Thain
  2020-11-25  1:05                               ` Miguel Ojeda
  0 siblings, 1 reply; 73+ messages in thread
From: Finn Thain @ 2020-11-24 23:53 UTC (permalink / raw)
  To: Miguel Ojeda
  Cc: Kees Cook, James Bottomley, Gustavo A. R. Silva, Joe Perches,
	Jakub Kicinski, alsa-devel, linux-atm-general, reiserfs-devel,
	linux-iio, linux-wireless, linux-fbdev, dri-devel, linux-kernel,
	Nathan Chancellor, linux-ide, dm-devel, keyrings, linux-mtd,
	GR-everest-linux-l2, wcn36xx, samba-technical, linux-i3c,
	linux1394-devel, linux-afs, usb-storage, drbd-dev, devel,
	linux-cifs, rds-devel, Nick Desaulniers, linux-scsi, linux-rdma,
	oss-drivers, bridge, linux-security-module, amd-gfx, linux-stm32,
	cluster-devel, linux-acpi, coreteam, intel-wired-lan,
	linux-input, Miguel Ojeda, tipc-discussion, Ext4 Developers List,
	Linux Media Mailing List, linux-watchdog, selinux, linux-arm-msm,
	intel-gfx, linux-geode, linux-can, linux-block, linux-gpio,
	op-tee, linux-mediatek, xen-devel, nouveau, linux-hams,
	ceph-devel, virtualization, Linux ARM, linux-hwmon,
	maintainer:X86 ARCHITECTURE (32-BIT AND 64-BIT),
	linux-nfs, GR-Linux-NIC-Dev, Linux-MM, Network Development,
	linux-decnet-user, linux-mmc, linux-renesas-soc, linux-sctp,
	linux-usb, netfilter-devel, Linux Crypto Mailing List, patches,
	linux-integrity, target-devel, linux-hardening, Jonathan Cameron,
	Greg KH


On Wed, 25 Nov 2020, Miguel Ojeda wrote:

> 
> The C standard has nothing to do with this. We use compiler extensions 
> of several kinds, for many years. Even discounting those extensions, the 
> kernel is not even conforming to C due to e.g. strict aliasing. I am not 
> sure what you are trying to argue here.
> 

I'm saying that supporting the official language spec makes more sense 
than attempting to support a multitude of divergent interpretations of the 
spec (i.e. gcc, clang, coverity etc.)

I'm also saying that the reason why we use -std=gnu89 is that existing 
code was written in that language, not in ad hoc languages comprised of 
collections of extensions that change with every release.

> But, since you insist: yes, the `fallthrough` attribute is in the 
> current C2x draft.
> 

Thank you for checking. I found a free version that's only 6 weeks old:

http://www.open-std.org/jtc1/sc22/wg14/www/docs/n2583.pdf

It will be interesting to see whether 6.7.11.5 changes once the various 
implementations reach agreement.

^ permalink raw reply	[flat|nested] 73+ messages in thread

* Re: [PATCH 000/141] Fix fall-through warnings for Clang
  2020-11-23 20:37                     ` James Bottomley
@ 2020-11-25  0:32                       ` Miguel Ojeda
  2020-11-25 22:44                         ` Edward Cree
  2020-11-25 10:38                       ` Andy Shevchenko
  1 sibling, 1 reply; 73+ messages in thread
From: Miguel Ojeda @ 2020-11-25  0:32 UTC (permalink / raw)
  To: James Bottomley
  Cc: Kees Cook, Jakub Kicinski, Gustavo A. R. Silva, linux-kernel,
	alsa-devel, amd-gfx, bridge, ceph-devel, cluster-devel, coreteam,
	devel, dm-devel, drbd-dev, dri-devel, GR-everest-linux-l2,
	GR-Linux-NIC-Dev, intel-gfx, intel-wired-lan, keyrings,
	linux1394-devel, linux-acpi, linux-afs, Linux ARM, linux-arm-msm,
	linux-atm-general, linux-block, linux-can, linux-cifs,
	Linux Crypto Mailing List, linux-decnet-user,
	Ext4 Developers List, linux-fbdev, linux-geode, linux-gpio,
	linux-hams, linux-hwmon, linux-i3c, linux-ide, linux-iio,
	linux-input, linux-integrity, linux-mediatek,
	Linux Media Mailing List, linux-mmc, Linux-MM, linux-mtd,
	linux-nfs, linux-rdma, linux-renesas-soc, linux-scsi, linux-sctp,
	linux-security-module, linux-stm32, linux-usb, linux-watchdog,
	linux-wireless, Network Development, netfilter-devel, nouveau,
	op-tee, oss-drivers, patches, rds-devel, reiserfs-devel,
	samba-technical, selinux, target-devel, tipc-discussion,
	usb-storage, virtualization, wcn36xx,
	maintainer:X86 ARCHITECTURE (32-BIT AND 64-BIT),
	xen-devel, linux-hardening, Nick Desaulniers, Nathan Chancellor,
	Miguel Ojeda, Joe Perches

On Mon, Nov 23, 2020 at 9:38 PM James Bottomley
<James.Bottomley@hansenpartnership.com> wrote:
>
> So you think a one line patch should take one minute to produce ... I
> really don't think that's grounded in reality.

No, I have not said that. Please don't put words in my mouth (again).

I have said *authoring* lines of *this* kind takes a minute per line.
Specifically: lines fixing the fallthrough warning mechanically and
repeatedly where the compiler tells you to, and doing so full-time for
a month.

For instance, take the following one from Gustavo. Are you really
saying it takes 12 minutes (your number) to write that `break;`?

diff --git a/drivers/gpu/drm/via/via_irq.c b/drivers/gpu/drm/via/via_irq.c
index 24cc445169e2..a3e0fb5b8671 100644
--- a/drivers/gpu/drm/via/via_irq.c
+++ b/drivers/gpu/drm/via/via_irq.c
@@ -364,6 +364,7 @@ int via_wait_irq(struct drm_device *dev, void
*data, struct drm_file *file_priv)
                irqwait->request.sequence +=
                        atomic_read(&cur_irq->irq_received);
                irqwait->request.type &= ~_DRM_VBLANK_RELATIVE;
+               break;
        case VIA_IRQ_ABSOLUTE:
                break;
        default:

>  I suppose a one line
> patch only takes a minute to merge with b4 if no-one reviews or tests
> it, but that's not really desirable.

I have not said that either. I said reviewing and merging those are
noise compared to any complex patch. Testing should be done by the
author comparing codegen.

> Part of what I'm trying to measure is the "and useful" bit because
> that's not a given.

It is useful since it makes intent clear. It also catches actual bugs,
which is even more valuable.

> Well, you know, subsystems are very different in terms of the amount of
> patches a maintainer has to process per release cycle of the kernel.
> If a maintainer is close to capacity, additional patches, however
> trivial, become a problem.  If a maintainer has spare cycles, trivial
> patches may look easy.

First of all, voluntary maintainers choose their own workload.
Furthermore, we already measure capacity in the `MAINTAINERS` file:
maintainers can state they can only handle a few patches. Finally, if
someone does not have time for a trivial patch, they are very unlikely
to have any time to review big ones.

> You seem to be saying that because you find it easy to merge trivial
> patches, everyone should.

Again, I have not said anything of the sort.

Cheers,
Miguel

^ permalink raw reply related	[flat|nested] 73+ messages in thread

* Re: [Intel-wired-lan] [PATCH 000/141] Fix fall-through warnings for Clang
  2020-11-24 23:53                             ` Finn Thain
@ 2020-11-25  1:05                               ` Miguel Ojeda
  0 siblings, 0 replies; 73+ messages in thread
From: Miguel Ojeda @ 2020-11-25  1:05 UTC (permalink / raw)
  To: Finn Thain
  Cc: Kees Cook, James Bottomley, Gustavo A. R. Silva, Joe Perches,
	Jakub Kicinski, alsa-devel, linux-atm-general, reiserfs-devel,
	linux-iio, linux-wireless, linux-fbdev, dri-devel, linux-kernel,
	Nathan Chancellor, linux-ide, dm-devel, keyrings, linux-mtd,
	GR-everest-linux-l2, wcn36xx, samba-technical, linux-i3c,
	linux1394-devel, linux-afs, usb-storage, drbd-dev, devel,
	linux-cifs, rds-devel, Nick Desaulniers, linux-scsi, linux-rdma,
	oss-drivers, bridge, linux-security-module, amd-gfx, linux-stm32,
	cluster-devel, linux-acpi, coreteam, intel-wired-lan,
	linux-input, Miguel Ojeda, tipc-discussion, Ext4 Developers List,
	Linux Media Mailing List, linux-watchdog, selinux, linux-arm-msm,
	intel-gfx, linux-geode, linux-can, linux-block, linux-gpio,
	op-tee, linux-mediatek, xen-devel, nouveau, linux-hams,
	ceph-devel, virtualization, Linux ARM, linux-hwmon,
	maintainer:X86 ARCHITECTURE (32-BIT AND 64-BIT),
	linux-nfs, GR-Linux-NIC-Dev, Linux-MM, Network Development,
	linux-decnet-user, linux-mmc, linux-renesas-soc, linux-sctp,
	linux-usb, netfilter-devel, Linux Crypto Mailing List, patches,
	linux-integrity, target-devel, linux-hardening, Jonathan Cameron,
	Greg KH

On Wed, Nov 25, 2020 at 12:53 AM Finn Thain <fthain@telegraphics.com.au> wrote:
>
> I'm saying that supporting the official language spec makes more sense
> than attempting to support a multitude of divergent interpretations of the
> spec (i.e. gcc, clang, coverity etc.)

Making the kernel strictly conforming is a ship that sailed long ago,
for several reasons. Anyway, supporting several compilers and other
tools, regardless of extensions, is valuable.

> I'm also saying that the reason why we use -std=gnu89 is that existing
> code was written in that language, not in ad hoc languages comprised of
> collections of extensions that change with every release.

No, we aren't particularly tied to `gnu89` or anything like that. We
could actually go for `gnu11` already, since the minimum GCC and Clang
support it. Even if a bit of code needs fixing, that shouldn't be a
problem if someone puts the work.

In other words, the kernel code is not frozen, nor are the features it
uses from compilers. They do, in fact, change from time to time.

> Thank you for checking. I found a free version that's only 6 weeks old:

You're welcome! There are quite a few new attributes coming, mostly
following C++ ones.

> It will be interesting to see whether 6.7.11.5 changes once the various
> implementations reach agreement.

Not sure what you mean. The standard does not evolve through
implementations' agreement (although standardizing existing practice
is one of the best arguments to back a change).

Cheers,
Miguel

^ permalink raw reply	[flat|nested] 73+ messages in thread

* Re: [Intel-wired-lan] [PATCH 000/141] Fix fall-through warnings for Clang
  2020-11-24 21:32                       ` Kees Cook
  2020-11-24 22:24                         ` Finn Thain
@ 2020-11-25  7:05                         ` James Bottomley
  2020-11-25 12:24                           ` Nick Desaulniers
  2020-11-25 21:10                           ` Kees Cook
  1 sibling, 2 replies; 73+ messages in thread
From: James Bottomley @ 2020-11-25  7:05 UTC (permalink / raw)
  To: Kees Cook
  Cc: Gustavo A. R. Silva, Joe Perches, Jakub Kicinski, alsa-devel,
	linux-atm-general, reiserfs-devel, linux-iio, linux-wireless,
	linux-fbdev, dri-devel, linux-kernel, Nathan Chancellor,
	linux-ide, dm-devel, keyrings, linux-mtd, GR-everest-linux-l2,
	wcn36xx, samba-technical, linux-i3c, linux1394-devel, linux-afs,
	usb-storage, drbd-dev, devel, linux-cifs, rds-devel,
	Nick Desaulniers, linux-scsi, linux-rdma, oss-drivers, bridge,
	linux-security-module, amd-gfx, linux-stm32, cluster-devel,
	linux-acpi, coreteam, intel-wired-lan, linux-input, Miguel Ojeda,
	tipc-discussion, linux-ext4, linux-media, linux-watchdog,
	selinux, linux-arm-msm, intel-gfx, linux-geode, linux-can,
	linux-block, linux-gpio, op-tee, linux-mediatek, xen-devel,
	nouveau, linux-hams, ceph-devel, virtualization,
	linux-arm-kernel, linux-hwmon, x86, linux-nfs, GR-Linux-NIC-Dev,
	linux-mm, netdev, linux-decnet-user, linux-mmc,
	linux-renesas-soc, linux-sctp, linux-usb, netfilter-devel,
	linux-crypto, patches, linux-integrity, target-devel,
	linux-hardening, Jonathan Cameron, Greg KH

On Tue, 2020-11-24 at 13:32 -0800, Kees Cook wrote:
> On Mon, Nov 23, 2020 at 08:31:30AM -0800, James Bottomley wrote:
> > Really, no ... something which produces no improvement has no value
> > at all ... we really shouldn't be wasting maintainer time with it
> > because it has a cost to merge.  I'm not sure we understand where
> > the balance lies in value vs cost to merge but I am confident in
> > the zero value case.
> 
> What? We can't measure how many future bugs aren't introduced because
> the kernel requires explicit case flow-control statements for all new
> code.

No but we can measure how vulnerable our current coding habits are to
the mistake this warning would potentially prevent.  I don't think it's
wrong to extrapolate that if we had no instances at all of prior coding
problems we likely wouldn't have any in future either making adopting
the changes needed to enable the warning valueless ... that's the zero
value case I was referring to above.

Now, what we have seems to be about 6 cases (at least what's been shown
in this thread) where a missing break would cause potentially user
visible issues.  That means the value of this isn't zero, but it's not
a no-brainer massive win either.  That's why I think asking what we've
invested vs the return isn't a useless exercise.

> We already enable -Wimplicit-fallthrough globally, so that's not the
> discussion. The issue is that Clang is (correctly) even more strict
> than GCC for this, so these are the remaining ones to fix for full
> Clang coverage too.
> 
> People have spent more time debating this already than it would have
> taken to apply the patches. :)

You mean we've already spent 90% of the effort to come this far so we
might as well go the remaining 10% because then at least we get some
return? It's certainly a clinching argument in defence procurement ...

> This is about robustness and language wrangling. It's a big code-
> base, and this is the price of our managing technical debt for
> permanent robustness improvements. (The numbers I ran from Gustavo's
> earlier patches were that about 10% of the places adjusted were
> identified as legitimate bugs being fixed. This final series may be
> lower, but there are still bugs being found from it -- we need to
> finish this and shut the door on it for good.)

I got my six patches by analyzing the lwn.net report of the fixes that
was cited which had 21 of which 50% didn't actually change the emitted
code, and 25% didn't have a user visible effect.

But the broader point I'm making is just because the compiler people
come up with a shiny new warning doesn't necessarily mean the problem
it's detecting is one that causes us actual problems in the code base. 
I'd really be happier if we had a theory about what classes of CVE or
bug we could eliminate before we embrace the next new warning.

James




^ permalink raw reply	[flat|nested] 73+ messages in thread

* Re: [PATCH 000/141] Fix fall-through warnings for Clang
  2020-11-23 15:58                 ` James Bottomley
                                     ` (2 preceding siblings ...)
  2020-11-23 18:56                   ` Miguel Ojeda
@ 2020-11-25  9:01                   ` Sean Young
  3 siblings, 0 replies; 73+ messages in thread
From: Sean Young @ 2020-11-25  9:01 UTC (permalink / raw)
  To: James Bottomley
  Cc: Miguel Ojeda, Kees Cook, Jakub Kicinski, Gustavo A. R. Silva,
	linux-kernel, alsa-devel, amd-gfx, bridge, ceph-devel,
	cluster-devel, coreteam, devel, dm-devel, drbd-dev, dri-devel,
	GR-everest-linux-l2, GR-Linux-NIC-Dev, intel-gfx,
	intel-wired-lan, keyrings, linux1394-devel, linux-acpi,
	linux-afs, Linux ARM, linux-arm-msm, linux-atm-general,
	linux-block, linux-can, linux-cifs, Linux Crypto Mailing List,
	linux-decnet-user, Ext4 Developers List, linux-fbdev,
	linux-geode, linux-gpio, linux-hams, linux-hwmon, linux-i3c,
	linux-ide, linux-iio, linux-input, linux-integrity,
	linux-mediatek, Linux Media Mailing List, linux-mmc, Linux-MM,
	linux-mtd, linux-nfs, linux-rdma, linux-renesas-soc, linux-scsi,
	linux-sctp, linux-security-module, linux-stm32, linux-usb,
	linux-watchdog, linux-wireless, Network Development,
	netfilter-devel, nouveau, op-tee, oss-drivers, patches,
	rds-devel, reiserfs-devel, samba-technical, selinux,
	target-devel, tipc-discussion, usb-storage, virtualization,
	wcn36xx, maintainer:X86 ARCHITECTURE (32-BIT AND 64-BIT),
	xen-devel, linux-hardening, Nick Desaulniers, Nathan Chancellor,
	Miguel Ojeda, Joe Perches

On Mon, Nov 23, 2020 at 07:58:06AM -0800, James Bottomley wrote:
> On Mon, 2020-11-23 at 15:19 +0100, Miguel Ojeda wrote:
> > On Sun, Nov 22, 2020 at 11:36 PM James Bottomley
> > <James.Bottomley@hansenpartnership.com> wrote:
> > > It's not about the risk of the changes it's about the cost of
> > > implementing them.  Even if you discount the producer time (which
> > > someone gets to pay for, and if I were the engineering manager, I'd
> > > be unhappy about), the review/merge/rework time is pretty
> > > significant in exchange for six minor bug fixes.  Fine, when a new
> > > compiler warning comes along it's certainly reasonable to see if we
> > > can benefit from it and the fact that the compiler people think
> > > it's worthwhile is enough evidence to assume this initially.  But
> > > at some point you have to ask whether that assumption is supported
> > > by the evidence we've accumulated over the time we've been using
> > > it.  And if the evidence doesn't support it perhaps it is time to
> > > stop the experiment.
> > 
> > Maintainers routinely review 1-line trivial patches, not to mention
> > internal API changes, etc.
> 
> We're also complaining about the inability to recruit maintainers:
> 
> https://www.theregister.com/2020/06/30/hard_to_find_linux_maintainers_says_torvalds/
> 
> And burn out:
> 
> http://antirez.com/news/129
> 
> The whole crux of your argument seems to be maintainers' time isn't
> important so we should accept all trivial patches ... I'm pushing back
> on that assumption in two places, firstly the valulessness of the time
> and secondly that all trivial patches are valuable.

You're assuming burn out or recruitment problems is due to patch workload
or too many "trivial" patches.

In my experience, "other maintainers" is by far the biggest cause of
burn out for my kernel maintenance work.

Certainly arguing with a maintainer about some obviously-correct patch
series must be a good example of this.


Sean

^ permalink raw reply	[flat|nested] 73+ messages in thread

* Re: [PATCH 000/141] Fix fall-through warnings for Clang
  2020-11-23 20:37                     ` James Bottomley
  2020-11-25  0:32                       ` Miguel Ojeda
@ 2020-11-25 10:38                       ` Andy Shevchenko
  1 sibling, 0 replies; 73+ messages in thread
From: Andy Shevchenko @ 2020-11-25 10:38 UTC (permalink / raw)
  To: James Bottomley
  Cc: Miguel Ojeda, Kees Cook, Jakub Kicinski, Gustavo A. R. Silva,
	linux-kernel, ALSA Development Mailing List, amd-gfx, bridge,
	ceph-devel, cluster-devel, coreteam, open list:STAGING SUBSYSTEM,
	device-mapper development, drbd-dev, dri-devel,
	GR-everest-linux-l2, GR-Linux-NIC-Dev, intel-gfx,
	intel-wired-lan, keyrings, linux1394-devel,
	ACPI Devel Maling List, linux-afs, Linux ARM, linux-arm-msm,
	linux-atm-general, linux-block, linux-can, linux-cifs,
	Linux Crypto Mailing List, linux-decnet-user,
	Ext4 Developers List, open list:FRAMEBUFFER LAYER, linux-geode,
	open list:GPIO SUBSYSTEM, linux-hams, linux-hwmon, linux-i3c,
	linux-ide, linux-iio, linux-input, linux-integrity,
	moderated list:ARM/Mediatek SoC support,
	Linux Media Mailing List, linux-mmc, Linux-MM,
	open list:MEMORY TECHNOLOGY...,
	linux-nfs, open list:HFI1 DRIVER, Linux-Renesas, linux-scsi,
	linux-sctp, linux-security-module, linux-stm32, USB,
	linux-watchdog, linux-wireless, Network Development,
	netfilter-devel, nouveau, op-tee, oss-drivers, patches,
	rds-devel, reiserfs-devel, samba-technical, selinux,
	target-devel, tipc-discussion, usb-storage, virtualization,
	wcn36xx, maintainer:X86 ARCHITECTURE (32-BIT AND 64-BIT),
	xen-devel, linux-hardening, Nick Desaulniers, Nathan Chancellor,
	Miguel Ojeda, Joe Perches

On Mon, Nov 23, 2020 at 10:39 PM James Bottomley
<James.Bottomley@hansenpartnership.com> wrote:
> On Mon, 2020-11-23 at 19:56 +0100, Miguel Ojeda wrote:
> > On Mon, Nov 23, 2020 at 4:58 PM James Bottomley
> > <James.Bottomley@hansenpartnership.com> wrote:

...

> > But if we do the math, for an author, at even 1 minute per line
> > change and assuming nothing can be automated at all, it would take 1
> > month of work. For maintainers, a couple of trivial lines is noise
> > compared to many other patches.
>
> So you think a one line patch should take one minute to produce ... I
> really don't think that's grounded in reality.  I suppose a one line
> patch only takes a minute to merge with b4 if no-one reviews or tests
> it, but that's not really desirable.

In my practice most of the one line patches were either to fix or to
introduce quite interesting issues.
1 minute is 2-3 orders less than usually needed for such patches.
That's why I don't like churn produced by people who often even didn't
compile their useful contributions.

-- 
With Best Regards,
Andy Shevchenko

^ permalink raw reply	[flat|nested] 73+ messages in thread

* Re: [Intel-wired-lan] [PATCH 000/141] Fix fall-through warnings for Clang
  2020-11-25  7:05                         ` James Bottomley
@ 2020-11-25 12:24                           ` Nick Desaulniers
  2020-11-25 21:33                             ` Finn Thain
       [not found]                             ` <20201125082405.1d8c23dc@kicinski-fedora-pc1c0hjn.dhcp.thefacebook.com>
  2020-11-25 21:10                           ` Kees Cook
  1 sibling, 2 replies; 73+ messages in thread
From: Nick Desaulniers @ 2020-11-25 12:24 UTC (permalink / raw)
  To: James Bottomley
  Cc: Kees Cook, Gustavo A. R. Silva, Joe Perches, Jakub Kicinski,
	alsa-devel, linux-atm-general, reiserfs-devel, linux-iio,
	linux-wireless, linux-fbdev, dri-devel, LKML, Nathan Chancellor,
	linux-ide, dm-devel, keyrings, linux-mtd, GR-everest-linux-l2,
	wcn36xx, samba-technical, linux-i3c, linux1394-devel, linux-afs,
	usb-storage, drbd-dev, devel, linux-cifs, rds-devel, linux-scsi,
	linux-rdma, oss-drivers, bridge, linux-security-module,
	amd-gfx list, linux-stm32, cluster-devel, linux-acpi, coreteam,
	intel-wired-lan, linux-input, Miguel Ojeda, tipc-discussion,
	linux-ext4, linux-media, linux-watchdog, selinux, linux-arm-msm,
	intel-gfx, linux-geode, linux-can, linux-block, linux-gpio,
	op-tee, linux-mediatek, xen-devel, nouveau, linux-hams,
	ceph-devel, virtualization, Linux ARM, linux-hwmon,
	maintainer:X86 ARCHITECTURE (32-BIT AND 64-BIT),
	linux-nfs, GR-Linux-NIC-Dev, Linux Memory Management List,
	Network Development, linux-decnet-user, linux-mmc, Linux-Renesas,
	linux-sctp, linux-usb, netfilter-devel,
	open list:HARDWARE RANDOM NUMBER GENERATOR CORE, patches,
	linux-integrity, target-devel, linux-hardening, Jonathan Cameron,
	Greg KH

On Tue, Nov 24, 2020 at 11:05 PM James Bottomley
<James.Bottomley@hansenpartnership.com> wrote:
>
> On Tue, 2020-11-24 at 13:32 -0800, Kees Cook wrote:
> > We already enable -Wimplicit-fallthrough globally, so that's not the
> > discussion. The issue is that Clang is (correctly) even more strict
> > than GCC for this, so these are the remaining ones to fix for full
> > Clang coverage too.
> >
> > People have spent more time debating this already than it would have
> > taken to apply the patches. :)
>
> You mean we've already spent 90% of the effort to come this far so we
> might as well go the remaining 10% because then at least we get some
> return? It's certainly a clinching argument in defence procurement ...

So developers and distributions using Clang can't have
-Wimplicit-fallthrough enabled because GCC is less strict (which has
been shown in this thread to lead to bugs)?  We'd like to have nice
things too, you know.

I even agree that most of the churn comes from

case 0:
  ++x;
default:
  break;

which I have a patch for: https://reviews.llvm.org/D91895.  I agree
that can never lead to bugs.  But that's not the sole case of this
series, just most of them.

Though, note how the reviewer (C++ spec editor and clang front end
owner) in https://reviews.llvm.org/D91895 even asks in that review how
maybe a new flag would be more appropriate for a watered
down/stylistic variant of the existing behavior.  And if the current
wording of Documentation/process/deprecated.rst around "fallthrough"
is a straightforward rule of thumb, I kind of agree with him.

>
> > This is about robustness and language wrangling. It's a big code-
> > base, and this is the price of our managing technical debt for
> > permanent robustness improvements. (The numbers I ran from Gustavo's
> > earlier patches were that about 10% of the places adjusted were
> > identified as legitimate bugs being fixed. This final series may be
> > lower, but there are still bugs being found from it -- we need to
> > finish this and shut the door on it for good.)
>
> I got my six patches by analyzing the lwn.net report of the fixes that
> was cited which had 21 of which 50% didn't actually change the emitted
> code, and 25% didn't have a user visible effect.
>
> But the broader point I'm making is just because the compiler people
> come up with a shiny new warning doesn't necessarily mean the problem

That's not what this is though; you're attacking a strawman.  I'd
encourage you to bring that up when that actually occurs, unlike this
case since it's actively hindering getting -Wimplicit-fallthrough
enabled for Clang.  This is not a shiny new warning; it's already on
for GCC and has existed in both compilers for multiple releases.

And I'll also note that warnings are warnings and not errors because
they cannot be proven to be bugs in 100% of cases, but they have led
to bugs in the past.  They require a human to review their intent and
remove ambiguities.  If 97% of cases would end in a break ("Expert C
Programming: Deep C Secrets" - Peter van der Linden), then it starts
to look to me like a language defect; certainly an incorrectly chosen
default.  But the compiler can't know those 3% were intentional,
unless you're explicit for those exceptional cases.

> it's detecting is one that causes us actual problems in the code base.
> I'd really be happier if we had a theory about what classes of CVE or
> bug we could eliminate before we embrace the next new warning.

We don't generally file CVEs and waiting for them to occur might be
too reactive, but I agree that pointing to some additional
documentation in commit messages about how a warning could lead to a
bug would make it clearer to reviewers why being able to enable it
treewide, even if there's no bug in their particular subsystem, is in
the general interest of the commons.

On Mon, Nov 23, 2020 at 7:58 AM James Bottomley
<James.Bottomley@hansenpartnership.com> wrote:
>
> We're also complaining about the inability to recruit maintainers:
>
> https://www.theregister.com/2020/06/30/hard_to_find_linux_maintainers_says_torvalds/
>
> And burn out:
>
> http://antirez.com/news/129
>
> The whole crux of your argument seems to be maintainers' time isn't
> important so we should accept all trivial patches ... I'm pushing back
> on that assumption in two places, firstly the valulessness of the time
> and secondly that all trivial patches are valuable.

It's critical to the longevity of any open source project that there
are not single points of failure.  If someone is not expendable or
replaceable (or claims to be) then that's a risk to the project and a
bottleneck.  Not having a replacement in training or some form of
redundancy is short sighted.

If trivial patches are adding too much to your workload, consider
training a co-maintainer or asking for help from one of your reviewers
whom you trust.  I don't doubt it's hard to find maintainers, but
existing maintainers should go out of their way to entrust
co-maintainers especially when they find their workload becomes too
high.  And reviewing/picking up trivial patches is probably a great
way to get started.  If we allow too much knowledge of any one
subsystem to collect with one maintainer, what happens when that
maintainer leaves the community (which, given a finite lifespan, is an
inevitability)?
-- 
Thanks,
~Nick Desaulniers

^ permalink raw reply	[flat|nested] 73+ messages in thread

* Re: [Intel-wired-lan] [PATCH 000/141] Fix fall-through warnings for Clang
       [not found]                             ` <20201125082405.1d8c23dc@kicinski-fedora-pc1c0hjn.dhcp.thefacebook.com>
@ 2020-11-25 17:04                               ` Miguel Ojeda
  2020-11-25 22:09                               ` Nick Desaulniers
  1 sibling, 0 replies; 73+ messages in thread
From: Miguel Ojeda @ 2020-11-25 17:04 UTC (permalink / raw)
  To: Jakub Kicinski
  Cc: Nick Desaulniers, James Bottomley, Kees Cook,
	Gustavo A. R. Silva, Joe Perches, alsa-devel, linux-atm-general,
	reiserfs-devel, linux-iio, linux-wireless, linux-fbdev,
	dri-devel, LKML, Nathan Chancellor, linux-ide, dm-devel,
	keyrings, linux-mtd, GR-everest-linux-l2, wcn36xx,
	samba-technical, linux-i3c, linux1394-devel, linux-afs,
	usb-storage, drbd-dev, devel, linux-cifs, rds-devel, linux-scsi,
	linux-rdma, oss-drivers, bridge, linux-security-module,
	amd-gfx list, linux-stm32, cluster-devel, linux-acpi, coreteam,
	intel-wired-lan, linux-input, Miguel Ojeda, tipc-discussion,
	Ext4 Developers List, Linux Media Mailing List, linux-watchdog,
	selinux, linux-arm-msm, intel-gfx, linux-geode, linux-can,
	linux-block, linux-gpio, op-tee, linux-mediatek, xen-devel,
	nouveau, linux-hams, ceph-devel, virtualization, Linux ARM,
	linux-hwmon, maintainer:X86 ARCHITECTURE (32-BIT AND 64-BIT),
	linux-nfs, GR-Linux-NIC-Dev, Linux Memory Management List,
	Network Development, linux-decnet-user, linux-mmc, Linux-Renesas,
	linux-sctp, linux-usb, netfilter-devel,
	open list:HARDWARE RANDOM NUMBER GENERATOR CORE
	<linux-crypto@vger.kernel.org>,
	patches@opensource.cirrus.com, linux-integrity@vger.kernel.org,
	target-devel@vger.kernel.org, linux-hardening@vger.kernel.org,
	Jonathan Cameron <Jonathan.Cameron@huawei.com>,
	Greg KH

On Wed, Nov 25, 2020 at 5:24 PM Jakub Kicinski <kuba@kernel.org> wrote:
>
> And just to spell it out,
>
> case ENUM_VALUE1:
>         bla();
>         break;
> case ENUM_VALUE2:
>         bla();
> default:
>         break;
>
> is a fairly idiomatic way of indicating that not all values of the enum
> are expected to be handled by the switch statement.

It looks like a benign typo to me -- `ENUM_VALUE2` does not follow the
same pattern like `ENUM_VALUE1`. To me, the presence of the `default`
is what indicates (explicitly) that not everything is handled.

> Applying a real patch set and then getting a few follow ups the next day
> for trivial coding things like fallthrough missing or static missing,
> just because I didn't have the full range of compilers to check with
> before applying makes me feel pretty shitty, like I'm not doing a good
> job. YMMV.

The number of compilers, checkers, static analyzers, tests, etc. we
use keeps going up. That, indeed, means maintainers will miss more
things (unless maintainers do more work than before). But catching
bugs before they happen is *not* a bad thing.

Perhaps we could encourage more rebasing in -next (while still giving
credit to bots and testers) to avoid having many fixing commits
afterwards, but that is orthogonal.

I really don't think we should encourage the feeling that a maintainer
is doing a bad job if they don't catch everything on their reviews.
Any review is worth it. Maintainers, in the end, are just the
"guaranteed" reviewers that decide when the code looks reasonable
enough. They should definitely not feel pressured to be perfect.

Cheers,
Miguel

^ permalink raw reply	[flat|nested] 73+ messages in thread

* Re: [Intel-wired-lan] [PATCH 000/141] Fix fall-through warnings for Clang
  2020-11-25  7:05                         ` James Bottomley
  2020-11-25 12:24                           ` Nick Desaulniers
@ 2020-11-25 21:10                           ` Kees Cook
  1 sibling, 0 replies; 73+ messages in thread
From: Kees Cook @ 2020-11-25 21:10 UTC (permalink / raw)
  To: James Bottomley
  Cc: Gustavo A. R. Silva, Joe Perches, Jakub Kicinski, alsa-devel,
	linux-atm-general, reiserfs-devel, linux-iio, linux-wireless,
	linux-fbdev, dri-devel, linux-kernel, Nathan Chancellor,
	linux-ide, dm-devel, keyrings, linux-mtd, GR-everest-linux-l2,
	wcn36xx, samba-technical, linux-i3c, linux1394-devel, linux-afs,
	usb-storage, drbd-dev, devel, linux-cifs, rds-devel,
	Nick Desaulniers, linux-scsi, linux-rdma, oss-drivers, bridge,
	linux-security-module, amd-gfx, linux-stm32, cluster-devel,
	linux-acpi, coreteam, intel-wired-lan, linux-input, Miguel Ojeda,
	tipc-discussion, linux-ext4, linux-media, linux-watchdog,
	selinux, linux-arm-msm, intel-gfx, linux-geode, linux-can,
	linux-block, linux-gpio, op-tee, linux-mediatek, xen-devel,
	nouveau, linux-hams, ceph-devel, virtualization,
	linux-arm-kernel, linux-hwmon, x86, linux-nfs, GR-Linux-NIC-Dev,
	linux-mm, netdev, linux-decnet-user, linux-mmc,
	linux-renesas-soc, linux-sctp, linux-usb, netfilter-devel,
	linux-crypto, patches, linux-integrity, target-devel,
	linux-hardening, Jonathan Cameron, Greg KH

On Tue, Nov 24, 2020 at 11:05:35PM -0800, James Bottomley wrote:
> Now, what we have seems to be about 6 cases (at least what's been shown
> in this thread) where a missing break would cause potentially user
> visible issues.  That means the value of this isn't zero, but it's not
> a no-brainer massive win either.  That's why I think asking what we've
> invested vs the return isn't a useless exercise.

The number is much higher[1]. If it were 6 in the entire history of the
kernel, I would agree with you. :) Some were fixed _before_ Gustavo's
effort too, which I also count towards the idea of "this is a dangerous
weakness in C, and now we have stopped it forever."

> But the broader point I'm making is just because the compiler people
> come up with a shiny new warning doesn't necessarily mean the problem
> it's detecting is one that causes us actual problems in the code base. 
> I'd really be happier if we had a theory about what classes of CVE or
> bug we could eliminate before we embrace the next new warning.

But we did! It was long ago justified and documented[2], and even links to
the CWE[3] for it. This wasn't random joy over discovering a new warning
we could turn on, this was turning on a warning that the compiler folks
finally gave us to handle an entire class of flaws. If we need to update
the code-base to address it not a useful debate -- that was settled
already, even if you're only discovering it now. :P. This last patch
set is about finishing that work for Clang, which is correctly even
more strict than GCC.

-Kees

[1] https://outflux.net/slides/2019/lss/kspp.pdf calls out specific
    numbers (about 6.5% of the patches fixed missing breaks):
	v4.19:  3 of 129
	v4.20:  2 of  59
	v5.0:   3 of  56
	v5.1:  10 of 100
	v5.2:   6 of  71
	v5.3:   7 of  69

    And in the history of the kernel, it's been an ongoing source of
    flaws:

    $ l --no-merges | grep -i 'missing break' | wc -l
    185

    The frequency of such errors being "naturally" found was pretty
    steady until the static checkers started warning, and then it was
    on the rise, but the full effort flushed the rest out, and now it's
    dropped to almost zero:

      1 v2.6.12
      3 v2.6.16.28
      1 v2.6.17
      1 v2.6.19
      2 v2.6.21
      1 v2.6.22
      3 v2.6.24
      3 v2.6.29
      1 v2.6.32
      1 v2.6.33
      1 v2.6.35
      4 v2.6.36
      3 v2.6.38
      2 v2.6.39
      7 v3.0
      2 v3.1
      2 v3.2
      2 v3.3
      3 v3.4
      1 v3.5
      8 v3.6
      7 v3.7
      3 v3.8
      6 v3.9
      3 v3.10
      2 v3.11
      5 v3.12
      5 v3.13
      2 v3.14
      4 v3.15
      2 v3.16
      3 v3.17
      2 v3.18
      2 v3.19
      1 v4.0
      2 v4.1
      5 v4.2
      4 v4.5
      5 v4.7
      6 v4.8
      1 v4.9
      3 v4.10
      2 v4.11
      6 v4.12
      3 v4.13
      2 v4.14
      5 v4.15
      2 v4.16
      7 v4.18
      2 v4.19
      6 v4.20
      3 v5.0
     12 v5.1
      3 v5.2
      4 v5.3
      2 v5.4
      1 v5.8


    And the reason it's fully zero, is because we still have the cases we're
    cleaning up right now. Even this last one from v5.8 is specifically of
    the same type this series addresses:

        case 4:
                color_index = TrueCModeIndex;
+               break;
        default:
                return;
        }


[2] https://www.kernel.org/doc/html/latest/process/deprecated.html#implicit-switch-case-fall-through

	All switch/case blocks must end in one of:

	break;
	fallthrough;
	continue;
	goto <label>;
	return [expression];

[3] https://cwe.mitre.org/data/definitions/484.html

-- 
Kees Cook

^ permalink raw reply	[flat|nested] 73+ messages in thread

* Re: [Intel-wired-lan] [PATCH 000/141] Fix fall-through warnings for Clang
  2020-11-25 12:24                           ` Nick Desaulniers
@ 2020-11-25 21:33                             ` Finn Thain
  2020-11-25 22:09                               ` Nick Desaulniers
       [not found]                             ` <20201125082405.1d8c23dc@kicinski-fedora-pc1c0hjn.dhcp.thefacebook.com>
  1 sibling, 1 reply; 73+ messages in thread
From: Finn Thain @ 2020-11-25 21:33 UTC (permalink / raw)
  To: Nick Desaulniers
  Cc: James Bottomley, Kees Cook, Gustavo A. R. Silva, Joe Perches,
	Jakub Kicinski, alsa-devel, linux-atm-general, reiserfs-devel,
	linux-iio, linux-wireless, linux-fbdev, dri-devel, LKML,
	Nathan Chancellor, linux-ide, dm-devel, keyrings, linux-mtd,
	GR-everest-linux-l2, wcn36xx, samba-technical, linux-i3c,
	linux1394-devel, linux-afs, usb-storage, drbd-dev, devel,
	linux-cifs, rds-devel, linux-scsi, linux-rdma, oss-drivers,
	bridge, linux-security-module, amd-gfx list, linux-stm32,
	cluster-devel, linux-acpi, coreteam, intel-wired-lan,
	linux-input, Miguel Ojeda, tipc-discussion, linux-ext4,
	linux-media, linux-watchdog, selinux, linux-arm-msm, intel-gfx,
	linux-geode, linux-can, linux-block, linux-gpio, op-tee,
	linux-mediatek, xen-devel, nouveau, linux-hams, ceph-devel,
	virtualization, Linux ARM, linux-hwmon,
	maintainer:X86 ARCHITECTURE (32-BIT AND 64-BIT),
	linux-nfs, GR-Linux-NIC-Dev, Linux Memory Management List,
	Network Development, linux-decnet-user, linux-mmc, Linux-Renesas,
	linux-sctp, linux-usb, netfilter-devel,
	open list:HARDWARE RANDOM NUMBER GENERATOR CORE, patches,
	linux-integrity, target-devel, linux-hardening, Jonathan Cameron,
	Greg KH

On Wed, 25 Nov 2020, Nick Desaulniers wrote:

> So developers and distributions using Clang can't have 
> -Wimplicit-fallthrough enabled because GCC is less strict (which has 
> been shown in this thread to lead to bugs)?  We'd like to have nice 
> things too, you know.
> 

Apparently the GCC developers don't want you to have "nice things" either. 
Do you think that the kernel should drop gcc in favour of clang?
Or do you think that a codebase can somehow satisfy multiple checkers and 
their divergent interpretations of the language spec?

> This is not a shiny new warning; it's already on for GCC and has existed 
> in both compilers for multiple releases.
> 

Perhaps you're referring to the compiler feature that lead to the 
ill-fated, tree-wide /* fallthrough */ patch series.

When the ink dries on the C23 language spec and the implementations figure 
out how to interpret it then sure, enforce the warning for new code -- the 
cost/benefit analysis is straight forward. However, the case for patching 
existing mature code is another story.

^ permalink raw reply	[flat|nested] 73+ messages in thread

* Re: [Intel-wired-lan] [PATCH 000/141] Fix fall-through warnings for Clang
       [not found]                             ` <20201125082405.1d8c23dc@kicinski-fedora-pc1c0hjn.dhcp.thefacebook.com>
  2020-11-25 17:04                               ` Miguel Ojeda
@ 2020-11-25 22:09                               ` Nick Desaulniers
  1 sibling, 0 replies; 73+ messages in thread
From: Nick Desaulniers @ 2020-11-25 22:09 UTC (permalink / raw)
  To: Jakub Kicinski
  Cc: James Bottomley, Kees Cook, Gustavo A. R. Silva, Joe Perches,
	alsa-devel, linux-atm-general, reiserfs-devel, linux-iio,
	linux-wireless, linux-fbdev, dri-devel, LKML, Nathan Chancellor,
	linux-ide, dm-devel, keyrings, linux-mtd, GR-everest-linux-l2,
	wcn36xx, samba-technical, linux-i3c, linux1394-devel, linux-afs,
	usb-storage, drbd-dev, devel, linux-cifs, rds-devel, linux-scsi,
	linux-rdma, oss-drivers, bridge, linux-security-module,
	amd-gfx list, linux-stm32, cluster-devel, linux-acpi, coreteam,
	intel-wired-lan, linux-input, Miguel Ojeda, tipc-discussion,
	linux-ext4, linux-media, linux-watchdog, selinux, linux-arm-msm,
	intel-gfx, linux-geode, linux-can, linux-block, linux-gpio,
	op-tee, linux-mediatek, xen-devel, nouveau, linux-hams,
	ceph-devel, virtualization, Linux ARM, linux-hwmon,
	maintainer:X86 ARCHITECTURE (32-BIT AND 64-BIT),
	linux-nfs, GR-Linux-NIC-Dev, Linux Memory Management List,
	Network Development, linux-decnet-user, linux-mmc, Linux-Renesas,
	linux-sctp, linux-usb, netfilter-devel,
	open list:HARDWARE RANDOM NUMBER GENERATOR CORE
	<linux-crypto@vger.kernel.org>,
	patches@opensource.cirrus.com, linux-integrity@vger.kernel.org,
	target-devel@vger.kernel.org, linux-hardening@vger.kernel.org,
	Jonathan Cameron <Jonathan.Cameron@huawei.com>,
	Greg KH

On Wed, Nov 25, 2020 at 8:24 AM Jakub Kicinski <kuba@kernel.org> wrote:
>
> Applying a real patch set and then getting a few follow ups the next day
> for trivial coding things like fallthrough missing or static missing,
> just because I didn't have the full range of compilers to check with
> before applying makes me feel pretty shitty, like I'm not doing a good
> job. YMMV.

I understand. Everyone feels that way, except maybe Bond villains and
robots.  My advice in that case is don't take it personally.  We're
working with a language that's more error prone relative to others.
While one would like to believe they are flawless, over time they
can't beat the aggregate statistics.  A balance between Imposter
Syndrome and Dunning Kruger is walked by all software developers, and
the fear of making mistakes in public is one of the number one reasons
folks don't take the plunge contributing to open source software or
even the kernel.  My advice to them is "don't sweat the small stuff."
-- 
Thanks,
~Nick Desaulniers

^ permalink raw reply	[flat|nested] 73+ messages in thread

* Re: [Intel-wired-lan] [PATCH 000/141] Fix fall-through warnings for Clang
  2020-11-25 21:33                             ` Finn Thain
@ 2020-11-25 22:09                               ` Nick Desaulniers
  2020-11-25 23:21                                 ` Finn Thain
  2020-11-26  0:30                                 ` Finn Thain
  0 siblings, 2 replies; 73+ messages in thread
From: Nick Desaulniers @ 2020-11-25 22:09 UTC (permalink / raw)
  To: Finn Thain
  Cc: James Bottomley, Kees Cook, Gustavo A. R. Silva, Joe Perches,
	Jakub Kicinski, alsa-devel, linux-atm-general, reiserfs-devel,
	linux-iio, linux-wireless, linux-fbdev, dri-devel, LKML,
	Nathan Chancellor, linux-ide, dm-devel, keyrings, linux-mtd,
	GR-everest-linux-l2, wcn36xx, samba-technical, linux-i3c,
	linux1394-devel, linux-afs, usb-storage, drbd-dev, devel,
	linux-cifs, rds-devel, linux-scsi, linux-rdma, oss-drivers,
	bridge, linux-security-module, amd-gfx list, linux-stm32,
	cluster-devel, linux-acpi, coreteam, intel-wired-lan,
	linux-input, Miguel Ojeda, tipc-discussion, linux-ext4,
	linux-media, linux-watchdog, selinux, linux-arm-msm, intel-gfx,
	linux-geode, linux-can, linux-block, linux-gpio, op-tee,
	linux-mediatek, xen-devel, nouveau, linux-hams, ceph-devel,
	virtualization, Linux ARM, linux-hwmon,
	maintainer:X86 ARCHITECTURE (32-BIT AND 64-BIT),
	linux-nfs, GR-Linux-NIC-Dev, Linux Memory Management List,
	Network Development, linux-decnet-user, linux-mmc, Linux-Renesas,
	linux-sctp, linux-usb, netfilter-devel,
	open list:HARDWARE RANDOM NUMBER GENERATOR CORE, patches,
	linux-integrity, target-devel, linux-hardening, Jonathan Cameron,
	Greg KH

On Wed, Nov 25, 2020 at 1:33 PM Finn Thain <fthain@telegraphics.com.au> wrote:
>
> Or do you think that a codebase can somehow satisfy multiple checkers and
> their divergent interpretations of the language spec?

Have we found any cases yet that are divergent? I don't think so.  It
sounds to me like GCC's cases it warns for is a subset of Clang's.
Having additional coverage with Clang then should ensure coverage for
both.

> > This is not a shiny new warning; it's already on for GCC and has existed
> > in both compilers for multiple releases.
> >
>
> Perhaps you're referring to the compiler feature that lead to the
> ill-fated, tree-wide /* fallthrough */ patch series.
>
> When the ink dries on the C23 language spec and the implementations figure
> out how to interpret it then sure, enforce the warning for new code -- the
> cost/benefit analysis is straight forward. However, the case for patching
> existing mature code is another story.

I don't think we need to wait for the ink to dry on the C23 language
spec to understand that implicit fallthrough is an obvious defect of
the C language.  While the kernel is a mature codebase, it's not
immune to bugs.  And its maturity has yet to slow its rapid pace of
development.
-- 
Thanks,
~Nick Desaulniers

^ permalink raw reply	[flat|nested] 73+ messages in thread

* Re: [PATCH 000/141] Fix fall-through warnings for Clang
  2020-11-25  0:32                       ` Miguel Ojeda
@ 2020-11-25 22:44                         ` Edward Cree
  2020-11-26 14:53                           ` Miguel Ojeda
  0 siblings, 1 reply; 73+ messages in thread
From: Edward Cree @ 2020-11-25 22:44 UTC (permalink / raw)
  To: Miguel Ojeda, James Bottomley
  Cc: Kees Cook, Jakub Kicinski, Gustavo A. R. Silva, linux-kernel,
	alsa-devel, amd-gfx, bridge, ceph-devel, cluster-devel, coreteam,
	devel, dm-devel, drbd-dev, dri-devel, GR-everest-linux-l2,
	GR-Linux-NIC-Dev, intel-gfx, intel-wired-lan, keyrings,
	linux1394-devel, linux-acpi, linux-afs, Linux ARM, linux-arm-msm,
	linux-atm-general, linux-block, linux-can, linux-cifs,
	Linux Crypto Mailing List, linux-decnet-user,
	Ext4 Developers List, linux-fbdev, linux-geode, linux-gpio,
	linux-hams, linux-hwmon, linux-i3c, linux-ide, linux-iio,
	linux-input, linux-integrity, linux-mediatek,
	Linux Media Mailing List, linux-mmc, Linux-MM, linux-mtd,
	linux-nfs, linux-rdma, linux-renesas-soc, linux-scsi, linux-sctp,
	linux-security-module, linux-stm32, linux-usb, linux-watchdog,
	linux-wireless, Network Development, netfilter-devel, nouveau,
	op-tee, oss-drivers, patches, rds-devel, reiserfs-devel,
	samba-technical, selinux, target-devel, tipc-discussion,
	usb-storage, virtualization, wcn36xx,
	maintainer:X86 ARCHITECTURE (32-BIT AND 64-BIT),
	xen-devel, linux-hardening, Nick Desaulniers, Nathan Chancellor,
	Miguel Ojeda, Joe Perches

On 25/11/2020 00:32, Miguel Ojeda wrote:
> I have said *authoring* lines of *this* kind takes a minute per line.
> Specifically: lines fixing the fallthrough warning mechanically and
> repeatedly where the compiler tells you to, and doing so full-time for
> a month.
<snip>
> It is useful since it makes intent clear.
To make the intent clear, you have to first be certain that you
 understand the intent; otherwise by adding either a break or a
 fallthrough to suppress the warning you are just destroying the
 information that "the intent of this code is unknown".
Figuring out the intent of a piece of unfamiliar code takes more
 than 1 minute; just because
    case foo:
        thing;
    case bar:
        break;
 produces identical code to
    case foo:
        thing;
        break;
    case bar:
        break;
 doesn't mean that *either* is correct — maybe the author meant
 to write
    case foo:
        return thing;
    case bar:
        break;
 and by inserting that break you've destroyed the marker that
 would direct someone who knew what the code was about to look
 at that point in the code and spot the problem.
Thus, you *always* have to look at more than just the immediate
 mechanical context of the code, to make a proper judgement that
 yes, this was the intent.  If you think that that sort of thing
 can be done in an *average* time of one minute, then I hope you
 stay away from code I'm responsible for!
One minute would be an optimistic target for code that, as the
 maintainer, one is already somewhat familiar with.  For code
 that you're seeing for the first time, as is usually the case
 with the people doing these mechanical fix-a-warning patches,
 it's completely unrealistic.

A warning is only useful because it makes you *think* about the
 code.  If you suppress the warning without doing that thinking,
 then you made the warning useless; and if the warning made you
 think about code that didn't *need* it, then the warning was
 useless from the start.

So make your mind up: does Clang's stricter -Wimplicit-fallthrough
 flag up code that needs thought (in which case the fixes take
 effort both to author and to review) or does it flag up code
 that can be mindlessly "fixed" (in which case the warning is
 worthless)?  Proponents in this thread seem to be trying to
 have it both ways.

-ed

^ permalink raw reply	[flat|nested] 73+ messages in thread

* Re: [PATCH 000/141] Fix fall-through warnings for Clang
  2020-11-24 21:25           ` Kees Cook
@ 2020-11-25 23:02             ` Edward Cree
  0 siblings, 0 replies; 73+ messages in thread
From: Edward Cree @ 2020-11-25 23:02 UTC (permalink / raw)
  To: Kees Cook, Nick Desaulniers
  Cc: Jakub Kicinski, Gustavo A. R. Silva, LKML, alsa-devel,
	amd-gfx list, bridge, ceph-devel, cluster-devel, coreteam, devel,
	dm-devel, drbd-dev, dri-devel, GR-everest-linux-l2,
	GR-Linux-NIC-Dev, intel-gfx, intel-wired-lan, keyrings,
	linux1394-devel, linux-acpi, linux-afs, Linux ARM, linux-arm-msm,
	linux-atm-general, linux-block, linux-can, linux-cifs,
	open list:HARDWARE RANDOM NUMBER GENERATOR CORE,
	linux-decnet-user, linux-ext4, linux-fbdev, linux-geode,
	linux-gpio, linux-hams, linux-hwmon, linux-i3c, linux-ide,
	linux-iio, linux-input, linux-integrity, linux-mediatek,
	linux-media, linux-mmc, Linux Memory Management List, linux-mtd,
	linux-nfs, linux-rdma, Linux-Renesas, linux-scsi, linux-sctp,
	linux-security-module, linux-stm32, linux-usb, linux-watchdog,
	linux-wireless, Network Development, netfilter-devel, nouveau,
	op-tee, oss-drivers, patches, rds-devel, reiserfs-devel,
	samba-technical, selinux, target-devel, tipc-discussion,
	usb-storage, virtualization, wcn36xx,
	maintainer:X86 ARCHITECTURE (32-BIT AND 64-BIT),
	xen-devel, linux-hardening, Nathan Chancellor, Miguel Ojeda,
	Joe Perches

On 24/11/2020 21:25, Kees Cook wrote:
> I still think this isn't right -- it's a case statement that runs off
> the end without an explicit flow control determination.

Proves too much — for instance
    case foo:
    case bar:
        thing;
        break;
 doesn't require a fallthrough; after case foo:, and afaik
 no-one is suggesting it should.  Yet it, too, is "a case
 statement that runs off the end without an explicit flow
 control determination".

-ed

^ permalink raw reply	[flat|nested] 73+ messages in thread

* Re: [Intel-wired-lan] [PATCH 000/141] Fix fall-through warnings for Clang
  2020-11-25 22:09                               ` Nick Desaulniers
@ 2020-11-25 23:21                                 ` Finn Thain
  2020-11-26  0:30                                 ` Finn Thain
  1 sibling, 0 replies; 73+ messages in thread
From: Finn Thain @ 2020-11-25 23:21 UTC (permalink / raw)
  To: Nick Desaulniers
  Cc: James Bottomley, Kees Cook, Gustavo A. R. Silva, Joe Perches,
	Jakub Kicinski, alsa-devel, linux-atm-general, reiserfs-devel,
	linux-iio, linux-wireless, linux-fbdev, dri-devel, LKML,
	Nathan Chancellor, linux-ide, dm-devel, keyrings, linux-mtd,
	GR-everest-linux-l2, wcn36xx, samba-technical, linux-i3c,
	linux1394-devel, linux-afs, usb-storage, drbd-dev, devel,
	linux-cifs, rds-devel, linux-scsi, linux-rdma, oss-drivers,
	bridge, linux-security-module, amd-gfx list, linux-stm32,
	cluster-devel, linux-acpi, coreteam, intel-wired-lan,
	linux-input, Miguel Ojeda, tipc-discussion, linux-ext4,
	linux-media, linux-watchdog, selinux, linux-arm-msm, intel-gfx,
	linux-geode, linux-can, linux-block, linux-gpio, op-tee,
	linux-mediatek, xen-devel, nouveau, linux-hams, ceph-devel,
	virtualization, Linux ARM, linux-hwmon,
	maintainer:X86 ARCHITECTURE (32-BIT AND 64-BIT),
	linux-nfs, GR-Linux-NIC-Dev, Linux Memory Management List,
	Network Development, linux-decnet-user, linux-mmc, Linux-Renesas,
	linux-sctp, linux-usb, netfilter-devel,
	open list:HARDWARE RANDOM NUMBER GENERATOR CORE, patches,
	linux-integrity, target-devel, linux-hardening, Jonathan Cameron,
	Greg KH

On Wed, 25 Nov 2020, Nick Desaulniers wrote:

> On Wed, Nov 25, 2020 at 1:33 PM Finn Thain <fthain@telegraphics.com.au> 
> wrote:
> >
> > Or do you think that a codebase can somehow satisfy multiple checkers 
> > and their divergent interpretations of the language spec?
> 
> Have we found any cases yet that are divergent? I don't think so.

There are many implementations, so I think you are guaranteed to find more 
divergence if you look. That's because the spec is full of language like 
this: "implementations are encouraged not to emit a diagnostic" and 
"implementations are encouraged to issue a diagnostic".

Some implementations will decide to not emit (under the premise that vast 
amounts of existing code would have to get patched until the compiler goes 
quiet) whereas other implementations will decide to emit (under the 
premise that the author is doing the checking and not the janitor or the 
packager).

> It sounds to me like GCC's cases it warns for is a subset of Clang's. 
> Having additional coverage with Clang then should ensure coverage for 
> both.
> 

If that claim were true, the solution would be simple. (It's not.)

For the benefit of projects that enable -Werror and projects that 
nominated gcc as their preferred compiler, clang would simply need a flag 
to enable conformance with gcc by suppressing those additional warnings 
that clang would normally produce.

This simple solution is, of course, completely unworkable, since it would 
force clang to copy some portion of gcc's logic (rewritten under LLVM's 
unique license) and then to track future changes to that portion of gcc 
indefinitely.

^ permalink raw reply	[flat|nested] 73+ messages in thread

* Re: [Intel-wired-lan] [PATCH 000/141] Fix fall-through warnings for Clang
  2020-11-25 22:09                               ` Nick Desaulniers
  2020-11-25 23:21                                 ` Finn Thain
@ 2020-11-26  0:30                                 ` Finn Thain
  1 sibling, 0 replies; 73+ messages in thread
From: Finn Thain @ 2020-11-26  0:30 UTC (permalink / raw)
  To: Nick Desaulniers
  Cc: James Bottomley, Kees Cook, Gustavo A. R. Silva, Joe Perches,
	Jakub Kicinski, alsa-devel, linux-atm-general, reiserfs-devel,
	linux-iio, linux-wireless, linux-fbdev, dri-devel, LKML,
	Nathan Chancellor, linux-ide, dm-devel, keyrings, linux-mtd,
	GR-everest-linux-l2, wcn36xx, samba-technical, linux-i3c,
	linux1394-devel, linux-afs, usb-storage, drbd-dev, devel,
	linux-cifs, rds-devel, linux-scsi, linux-rdma, oss-drivers,
	bridge, linux-security-module, amd-gfx list, linux-stm32,
	cluster-devel, linux-acpi, coreteam, intel-wired-lan,
	linux-input, Miguel Ojeda, tipc-discussion, linux-ext4,
	linux-media, linux-watchdog, selinux, linux-arm-msm, intel-gfx,
	linux-geode, linux-can, linux-block, linux-gpio, op-tee,
	linux-mediatek, xen-devel, nouveau, linux-hams, ceph-devel,
	virtualization, Linux ARM, linux-hwmon,
	maintainer:X86 ARCHITECTURE (32-BIT AND 64-BIT),
	linux-nfs, GR-Linux-NIC-Dev, Linux Memory Management List,
	Network Development, linux-decnet-user, linux-mmc, Linux-Renesas,
	linux-sctp, linux-usb, netfilter-devel,
	open list:HARDWARE RANDOM NUMBER GENERATOR CORE, patches,
	linux-integrity, target-devel, linux-hardening, Jonathan Cameron,
	Greg KH



On Wed, 25 Nov 2020, Nick Desaulniers wrote:

> On Wed, Nov 25, 2020 at 1:33 PM Finn Thain <fthain@telegraphics.com.au> wrote:
> >
> > Or do you think that a codebase can somehow satisfy multiple checkers 
> > and their divergent interpretations of the language spec?
> 
> Have we found any cases yet that are divergent? I don't think so. 

You mean, aside from -Wimplicit-fallthrough? I'm glad you asked. How about 
-Wincompatible-pointer-types and -Wframe-larger-than?

All of the following files have been affected by divergent diagnostics 
produced by clang and gcc.

arch/arm64/include/asm/neon-intrinsics.h
arch/powerpc/xmon/Makefile
drivers/gpu/drm/i915/Makefile
drivers/gpu/drm/i915/i915_utils.h
drivers/staging/media/atomisp/pci/atomisp_subdev.c
fs/ext4/super.c
include/trace/events/qla.h
net/mac80211/rate.c
tools/lib/string.c
tools/perf/util/setup.py
tools/scripts/Makefile.include

And if I searched for 'smatch' or 'coverity' instead of 'clang' I'd 
probably find more divergence.

Here are some of the relevant commits.

0738c8b5915c7eaf1e6007b441008e8f3b460443
9c87156cce5a63735d1218f0096a65c50a7a32aa
babaab2f473817f173a2d08e410c25abf5ed0f6b
065e5e559555e2f100bc95792a8ef1b609bbe130
93f56de259376d7e4fff2b2d104082e1fa66e237
6c4798d3f08b81c2c52936b10e0fa872590c96ae
b7a313d84e853049062011d78cb04b6decd12f5c
093b75ef5995ea35d7f6bdb6c7b32a42a1999813

And before you object, "but -Wconstant-logical-operand is a clang-only 
warning! it can't be divergent with gcc!", consider that the special cases 
added to deal with clang-only warnings have to be removed when gcc catches 
up, which is more churn. Now multiply that by the number of checkers you 
care about.

^ permalink raw reply	[flat|nested] 73+ messages in thread

* Re: [PATCH 000/141] Fix fall-through warnings for Clang
  2020-11-25 22:44                         ` Edward Cree
@ 2020-11-26 14:53                           ` Miguel Ojeda
  2020-11-26 15:28                             ` Geert Uytterhoeven
  0 siblings, 1 reply; 73+ messages in thread
From: Miguel Ojeda @ 2020-11-26 14:53 UTC (permalink / raw)
  To: Edward Cree
  Cc: James Bottomley, Kees Cook, Jakub Kicinski, Gustavo A. R. Silva,
	linux-kernel, alsa-devel, amd-gfx list, bridge, ceph-devel,
	cluster-devel, coreteam, devel, dm-devel, drbd-dev, dri-devel,
	GR-everest-linux-l2, GR-Linux-NIC-Dev, intel-gfx,
	intel-wired-lan, keyrings, linux1394-devel, linux-acpi,
	linux-afs, Linux ARM, linux-arm-msm, linux-atm-general,
	linux-block, linux-can, linux-cifs, Linux Crypto Mailing List,
	linux-decnet-user, Ext4 Developers List, linux-fbdev,
	linux-geode, linux-gpio, linux-hams, linux-hwmon, linux-i3c,
	linux-ide, linux-iio, linux-input, linux-integrity,
	linux-mediatek, Linux Media Mailing List, linux-mmc, Linux-MM,
	linux-mtd, linux-nfs, linux-rdma, Linux-Renesas, linux-scsi,
	linux-sctp, linux-security-module, linux-stm32, linux-usb,
	linux-watchdog, linux-wireless, Network Development,
	netfilter-devel, nouveau, op-tee, oss-drivers, patches,
	rds-devel, reiserfs-devel, samba-technical, selinux,
	target-devel, tipc-discussion, usb-storage, virtualization,
	wcn36xx, maintainer:X86 ARCHITECTURE (32-BIT AND 64-BIT),
	xen-devel, linux-hardening, Nick Desaulniers, Nathan Chancellor,
	Miguel Ojeda, Joe Perches

On Wed, Nov 25, 2020 at 11:44 PM Edward Cree <ecree.xilinx@gmail.com> wrote:
>
> To make the intent clear, you have to first be certain that you
>  understand the intent; otherwise by adding either a break or a
>  fallthrough to suppress the warning you are just destroying the
>  information that "the intent of this code is unknown".

If you don't know what the intent of your own code is, then you
*already* have a problem in your hands.

> Figuring out the intent of a piece of unfamiliar code takes more
>  than 1 minute; just because
>     case foo:
>         thing;
>     case bar:
>         break;
>  produces identical code to
>     case foo:
>         thing;
>         break;
>     case bar:
>         break;
>  doesn't mean that *either* is correct — maybe the author meant

What takes 1 minute is adding it *mechanically* by the author, i.e. so
that you later compare whether codegen is the same.

>  to write
>     case foo:
>         return thing;
>     case bar:
>         break;
>  and by inserting that break you've destroyed the marker that
>  would direct someone who knew what the code was about to look
>  at that point in the code and spot the problem.

Then it means you already have a bug. This patchset gives the
maintainer a chance to notice it, which is a good thing. The "you've
destroyed the market" claim is bogus, because:
  1. you were not looking into it
  2. you didn't notice the bug so far
  3. is implicit -- harder to spot
  4. is only useful if you explicitly take a look at this kind of bug.
So why don't you do it now?

> Thus, you *always* have to look at more than just the immediate
>  mechanical context of the code, to make a proper judgement that
>  yes, this was the intent.

I find that is the responsibility of the maintainers and reviewers for
tree-wide patches like this, assuming they want. They can also keep
the behavior (and the bugs) without spending time. Their choice.

> If you think that that sort of thing
>  can be done in an *average* time of one minute, then I hope you
>  stay away from code I'm responsible for!

Please don't accuse others of recklessness or incompetence, especially
if you didn't understand what they said.

> A warning is only useful because it makes you *think* about the
>  code.  If you suppress the warning without doing that thinking,
>  then you made the warning useless; and if the warning made you
>  think about code that didn't *need* it, then the warning was
>  useless from the start.

We are not suppressing the warning. Quite the opposite, in fact.

> So make your mind up: does Clang's stricter -Wimplicit-fallthrough
>  flag up code that needs thought (in which case the fixes take
>  effort both to author and to review)

As I said several times already, it does take time to review if the
maintainer wants to take the chance to see if they had a bug to begin
with, but it does not require thought for the author if they just go
for equivalent codegen.

> or does it flag up code
>  that can be mindlessly "fixed" (in which case the warning is
>  worthless)?  Proponents in this thread seem to be trying to
>  have it both ways.

A warning is not worthless just because you can mindlessly fix it.
There are many counterexamples, e.g. many
checkpatch/lint/lang-format/indentation warnings, functional ones like
the `if (a = b)` warning...

Cheers,
Miguel

^ permalink raw reply	[flat|nested] 73+ messages in thread

* Re: [PATCH 000/141] Fix fall-through warnings for Clang
  2020-11-26 14:53                           ` Miguel Ojeda
@ 2020-11-26 15:28                             ` Geert Uytterhoeven
  2020-11-26 16:18                               ` Karol Herbst
  2020-11-26 17:05                               ` Miguel Ojeda
  0 siblings, 2 replies; 73+ messages in thread
From: Geert Uytterhoeven @ 2020-11-26 15:28 UTC (permalink / raw)
  To: Miguel Ojeda
  Cc: Edward Cree, ALSA Development Mailing List, linux-atm-general,
	reiserfs-devel, linux-iio, linux-wireless,
	Linux Fbdev development list, dri-devel, Gustavo A. R. Silva,
	James Bottomley, linux-ide, dm-devel, keyrings, MTD Maling List,
	GR-everest-linux-l2, wcn36xx, samba-technical, linux-i3c,
	linux1394-devel, linux-afs, usb-storage, Lars Ellenberg,
	driverdevel, linux-cifs, rds-devel, Nick Desaulniers, scsi,
	Nathan Chancellor, linux-rdma, oss-drivers, bridge,
	linux-security-module, amd-gfx list, linux-stm32, cluster-devel,
	ACPI Devel Maling List, coreteam, intel-wired-lan, linux-input,
	Miguel Ojeda, Jakub Kicinski, Ext4 Developers List,
	Linux Media Mailing List, Kees Cook, selinux, linux-arm-msm,
	Intel Graphics Development, linux-geode, linux-can, linux-block,
	open list:GPIO SUBSYSTEM, op-tee, linux-mediatek, xen-devel,
	Nouveau Dev, linux-hams, ceph-devel, virtualization, Linux ARM,
	linux-hwmon, Linux Watchdog Mailing List, open list:NFS, SUNRPC,
	AND...,
	GR-Linux-NIC-Dev, tipc-discussion, Linux-MM, Network Development,
	linux-decnet-user, Linux MMC List, linux-kernel,
	maintainer:X86 ARCHITECTURE (32-BIT AND 64-BIT),
	Linux-Renesas, linux-sctp, USB list, NetFilter,
	Linux Crypto Mailing List, patches, Joe Perches, linux-integrity,
	target-devel, linux-hardening

Hi Miguel,

On Thu, Nov 26, 2020 at 3:54 PM Miguel Ojeda
<miguel.ojeda.sandonis@gmail.com> wrote:
> On Wed, Nov 25, 2020 at 11:44 PM Edward Cree <ecree.xilinx@gmail.com> wrote:
> > To make the intent clear, you have to first be certain that you
> >  understand the intent; otherwise by adding either a break or a
> >  fallthrough to suppress the warning you are just destroying the
> >  information that "the intent of this code is unknown".
>
> If you don't know what the intent of your own code is, then you
> *already* have a problem in your hands.

The maintainer is not necessarily the owner/author of the code, and
thus may not know the intent of the code.

> > or does it flag up code
> >  that can be mindlessly "fixed" (in which case the warning is
> >  worthless)?  Proponents in this thread seem to be trying to
> >  have it both ways.
>
> A warning is not worthless just because you can mindlessly fix it.
> There are many counterexamples, e.g. many
> checkpatch/lint/lang-format/indentation warnings, functional ones like
> the `if (a = b)` warning...

BTW, you cannot mindlessly fix the latter, as you cannot know if
"(a == b)" or "((a = b))" was intended, without understanding the code
(and the (possibly unavailable) data sheet, and the hardware, ...).

P.S. So far I've stayed out of this thread, as I like it if the compiler
     flags possible mistakes.  After all I was the one fixing new
     "may be used uninitialized" warnings thrown up by gcc-4.1, until
     (a bit later than) support for that compiler was removed...

Gr{oetje,eeting}s,

                        Geert

-- 
Geert Uytterhoeven -- There's lots of Linux beyond ia32 -- geert@linux-m68k.org

In personal conversations with technical people, I call myself a hacker. But
when I'm talking to journalists I just say "programmer" or something like that.
                                -- Linus Torvalds

^ permalink raw reply	[flat|nested] 73+ messages in thread

* Re: [PATCH 000/141] Fix fall-through warnings for Clang
  2020-11-26 15:28                             ` Geert Uytterhoeven
@ 2020-11-26 16:18                               ` Karol Herbst
  2020-11-26 17:05                               ` Miguel Ojeda
  1 sibling, 0 replies; 73+ messages in thread
From: Karol Herbst @ 2020-11-26 16:18 UTC (permalink / raw)
  To: Geert Uytterhoeven
  Cc: Miguel Ojeda, ALSA Development Mailing List, bridge,
	target-devel, linux-iio, linux-wireless, Linux MMC List,
	Linux Fbdev development list, dri-devel, virtualization,
	James Bottomley, linux-ide, dm-devel, keyrings, MTD Maling List,
	GR-everest-linux-l2, wcn36xx, linux-i3c, linux1394-devel,
	linux-afs, Lars Ellenberg, driverdevel, linux-cifs, rds-devel,
	scsi, ACPI Devel Maling List, linux-rdma, oss-drivers,
	linux-atm-general, ceph-devel, amd-gfx list, linux-stm32,
	cluster-devel, usb-storage, coreteam, intel-wired-lan,
	linux-input, Miguel Ojeda, Jakub Kicinski, Ext4 Developers List,
	NetFilter, Linux Media Mailing List, Kees Cook, selinux,
	linux-arm-msm, Intel Graphics Development, linux-sctp,
	reiserfs-devel, linux-geode, linux-block,
	open list:GPIO SUBSYSTEM, op-tee, linux-mediatek, xen-devel,
	Nouveau Dev, linux-hams, Nathan Chancellor, linux-can, Linux ARM,
	linux-hwmon, Nick Desaulniers, Linux Watchdog Mailing List,
	GR-Linux-NIC-Dev, Linux-MM, Network Development,
	linux-decnet-user, samba-technical, Gustavo A. R. Silva,
	linux-kernel, Linux-Renesas, Edward Cree, linux-security-module,
	USB list, tipc-discussion, Linux Crypto Mailing List, patches,
	Joe Perches, linux-integrity, open list:NFS, SUNRPC, AND...,
	maintainer:X86 ARCHITECTURE (32-BIT AND 64-BIT),
	linux-hardening

On Thu, Nov 26, 2020 at 4:28 PM Geert Uytterhoeven <geert@linux-m68k.org> wrote:
>
> Hi Miguel,
>
> On Thu, Nov 26, 2020 at 3:54 PM Miguel Ojeda
> <miguel.ojeda.sandonis@gmail.com> wrote:
> > On Wed, Nov 25, 2020 at 11:44 PM Edward Cree <ecree.xilinx@gmail.com> wrote:
> > > To make the intent clear, you have to first be certain that you
> > >  understand the intent; otherwise by adding either a break or a
> > >  fallthrough to suppress the warning you are just destroying the
> > >  information that "the intent of this code is unknown".
> >
> > If you don't know what the intent of your own code is, then you
> > *already* have a problem in your hands.
>
> The maintainer is not necessarily the owner/author of the code, and
> thus may not know the intent of the code.
>
> > > or does it flag up code
> > >  that can be mindlessly "fixed" (in which case the warning is
> > >  worthless)?  Proponents in this thread seem to be trying to
> > >  have it both ways.
> >
> > A warning is not worthless just because you can mindlessly fix it.
> > There are many counterexamples, e.g. many
> > checkpatch/lint/lang-format/indentation warnings, functional ones like
> > the `if (a = b)` warning...
>
> BTW, you cannot mindlessly fix the latter, as you cannot know if
> "(a == b)" or "((a = b))" was intended, without understanding the code
> (and the (possibly unavailable) data sheet, and the hardware, ...).
>

to allow assignments in if statements was clearly a mistake and if you
need outside information to understand the code, your code is the
issue already.

> P.S. So far I've stayed out of this thread, as I like it if the compiler
>      flags possible mistakes.  After all I was the one fixing new
>      "may be used uninitialized" warnings thrown up by gcc-4.1, until
>      (a bit later than) support for that compiler was removed...
>
> Gr{oetje,eeting}s,
>
>                         Geert
>
> --
> Geert Uytterhoeven -- There's lots of Linux beyond ia32 -- geert@linux-m68k.org
>
> In personal conversations with technical people, I call myself a hacker. But
> when I'm talking to journalists I just say "programmer" or something like that.
>                                 -- Linus Torvalds
> _______________________________________________
> dri-devel mailing list
> dri-devel@lists.freedesktop.org
> https://lists.freedesktop.org/mailman/listinfo/dri-devel
>


^ permalink raw reply	[flat|nested] 73+ messages in thread

* Re: [PATCH 000/141] Fix fall-through warnings for Clang
  2020-11-26 15:28                             ` Geert Uytterhoeven
  2020-11-26 16:18                               ` Karol Herbst
@ 2020-11-26 17:05                               ` Miguel Ojeda
  1 sibling, 0 replies; 73+ messages in thread
From: Miguel Ojeda @ 2020-11-26 17:05 UTC (permalink / raw)
  To: Geert Uytterhoeven
  Cc: Edward Cree, ALSA Development Mailing List, linux-atm-general,
	reiserfs-devel, linux-iio, linux-wireless,
	Linux Fbdev development list, dri-devel, Gustavo A. R. Silva,
	James Bottomley, linux-ide, dm-devel, keyrings, MTD Maling List,
	GR-everest-linux-l2, wcn36xx, samba-technical, linux-i3c,
	linux1394-devel, linux-afs, usb-storage, Lars Ellenberg,
	driverdevel, linux-cifs, rds-devel, Nick Desaulniers, scsi,
	Nathan Chancellor, linux-rdma, oss-drivers, bridge,
	linux-security-module, amd-gfx list, linux-stm32, cluster-devel,
	ACPI Devel Maling List, coreteam, intel-wired-lan, linux-input,
	Miguel Ojeda, Jakub Kicinski, Ext4 Developers List,
	Linux Media Mailing List, Kees Cook, selinux, linux-arm-msm,
	Intel Graphics Development, linux-geode, linux-can, linux-block,
	open list:GPIO SUBSYSTEM, op-tee, linux-mediatek, xen-devel,
	Nouveau Dev, linux-hams, ceph-devel, virtualization, Linux ARM,
	linux-hwmon, Linux Watchdog Mailing List, open list:NFS, SUNRPC,
	AND...,
	GR-Linux-NIC-Dev, tipc-discussion, Linux-MM, Network Development,
	linux-decnet-user, Linux MMC List, linux-kernel,
	maintainer:X86 ARCHITECTURE (32-BIT AND 64-BIT),
	Linux-Renesas, linux-sctp, USB list, NetFilter,
	Linux Crypto Mailing List, patches, Joe Perches, linux-integrity,
	target-devel, linux-hardening

On Thu, Nov 26, 2020 at 4:28 PM Geert Uytterhoeven <geert@linux-m68k.org> wrote:
>
> The maintainer is not necessarily the owner/author of the code, and
> thus may not know the intent of the code.

Agreed, I was not blaming maintainers -- just trying to point out that
the problem is there :-)

In those cases, it is still very useful: we add the `fallthrough` and
a comment saying `FIXME: fallthrough intended? Figure this out...`.
Thus a previous unknown unknown is now a known unknown. And no new
unknown unknowns will be introduced since we enabled the warning
globally.

> BTW, you cannot mindlessly fix the latter, as you cannot know if
> "(a == b)" or "((a = b))" was intended, without understanding the code
> (and the (possibly unavailable) data sheet, and the hardware, ...).

That's right, I was referring to the cases where the compiler saves
someone time from a typo they just made.

Cheers,
Miguel

^ permalink raw reply	[flat|nested] 73+ messages in thread

* Re: [PATCH 000/141] Fix fall-through warnings for Clang
  2020-11-20 18:21 [PATCH 000/141] Fix fall-through warnings for Clang Gustavo A. R. Silva
                   ` (5 preceding siblings ...)
       [not found] ` <160616392671.21180.16517492185091399884.b4-ty@kernel.org>
@ 2020-12-01  5:52 ` Martin K. Petersen
  2020-12-01  8:20   ` Gustavo A. R. Silva
  2020-12-08  4:52 ` (subset) " Martin K. Petersen
  7 siblings, 1 reply; 73+ messages in thread
From: Martin K. Petersen @ 2020-12-01  5:52 UTC (permalink / raw)
  To: Gustavo A. R. Silva
  Cc: linux-kernel, alsa-devel, amd-gfx, bridge, ceph-devel,
	cluster-devel, coreteam, devel, dm-devel, drbd-dev, dri-devel,
	GR-everest-linux-l2, GR-Linux-NIC-Dev, intel-gfx,
	intel-wired-lan, keyrings, linux1394-devel, linux-acpi,
	linux-afs, linux-arm-kernel, linux-arm-msm, linux-atm-general,
	linux-block, linux-can, linux-cifs, linux-crypto,
	linux-decnet-user, linux-ext4, linux-fbdev, linux-geode,
	linux-gpio, linux-hams, linux-hwmon, linux-i3c, linux-ide,
	linux-iio, linux-input, linux-integrity, linux-mediatek,
	linux-media, linux-mmc, linux-mm, linux-mtd, linux-nfs,
	linux-rdma, linux-renesas-soc, linux-scsi, linux-sctp,
	linux-security-module, linux-stm32, linux-usb, linux-watchdog,
	linux-wireless, netdev, netfilter-devel, nouveau, op-tee,
	oss-drivers, patches, rds-devel, reiserfs-devel, samba-technical,
	selinux, target-devel, tipc-discussion, usb-storage,
	virtualization, wcn36xx, x86, xen-devel, linux-hardening,
	Nick Desaulniers, Nathan Chancellor, Miguel Ojeda, Joe Perches,
	Kees Cook


Gustavo,

> This series aims to fix almost all remaining fall-through warnings in
> order to enable -Wimplicit-fallthrough for Clang.

Applied 20-22,54,120-124 to 5.11/scsi-staging, thanks.

-- 
Martin K. Petersen	Oracle Linux Engineering

^ permalink raw reply	[flat|nested] 73+ messages in thread

* Re: [PATCH 000/141] Fix fall-through warnings for Clang
  2020-12-01  5:52 ` Martin K. Petersen
@ 2020-12-01  8:20   ` Gustavo A. R. Silva
  0 siblings, 0 replies; 73+ messages in thread
From: Gustavo A. R. Silva @ 2020-12-01  8:20 UTC (permalink / raw)
  To: Martin K. Petersen
  Cc: linux-kernel, alsa-devel, amd-gfx, bridge, ceph-devel,
	cluster-devel, coreteam, devel, dm-devel, drbd-dev, dri-devel,
	GR-everest-linux-l2, GR-Linux-NIC-Dev, intel-gfx,
	intel-wired-lan, keyrings, linux1394-devel, linux-acpi,
	linux-afs, linux-arm-kernel, linux-arm-msm, linux-atm-general,
	linux-block, linux-can, linux-cifs, linux-crypto,
	linux-decnet-user, linux-ext4, linux-fbdev, linux-geode,
	linux-gpio, linux-hams, linux-hwmon, linux-i3c, linux-ide,
	linux-iio, linux-input, linux-integrity, linux-mediatek,
	linux-media, linux-mmc, linux-mm, linux-mtd, linux-nfs,
	linux-rdma, linux-renesas-soc, linux-scsi, linux-sctp,
	linux-security-module, linux-stm32, linux-usb, linux-watchdog,
	linux-wireless, netdev, netfilter-devel, nouveau, op-tee,
	oss-drivers, patches, rds-devel, reiserfs-devel, samba-technical,
	selinux, target-devel, tipc-discussion, usb-storage,
	virtualization, wcn36xx, x86, xen-devel, linux-hardening,
	Nick Desaulniers, Nathan Chancellor, Miguel Ojeda, Joe Perches,
	Kees Cook

On Tue, Dec 01, 2020 at 12:52:27AM -0500, Martin K. Petersen wrote:
> 
> Gustavo,
> 
> > This series aims to fix almost all remaining fall-through warnings in
> > order to enable -Wimplicit-fallthrough for Clang.
> 
> Applied 20-22,54,120-124 to 5.11/scsi-staging, thanks.

Awesome! :)

Thanks, Martin.
--
Gustavo

^ permalink raw reply	[flat|nested] 73+ messages in thread

* Re: [PATCH 000/141] Fix fall-through warnings for Clang
  2020-11-22 16:17       ` Kees Cook
  2020-11-22 18:21         ` James Bottomley
  2020-11-24  1:32         ` Nick Desaulniers
@ 2020-12-01 14:04         ` Dan Carpenter
  2 siblings, 0 replies; 73+ messages in thread
From: Dan Carpenter @ 2020-12-01 14:04 UTC (permalink / raw)
  To: Kees Cook
  Cc: Jakub Kicinski, alsa-devel, linux-atm-general, reiserfs-devel,
	linux-iio, linux-wireless, linux-fbdev, dri-devel, linux-kernel,
	Nathan Chancellor, linux-ide, dm-devel, keyrings, linux-mtd,
	GR-everest-linux-l2, wcn36xx, samba-technical, linux-i3c,
	linux1394-devel, linux-afs, usb-storage, drbd-dev, devel,
	linux-cifs, rds-devel, Nick Desaulniers, linux-scsi, linux-rdma,
	oss-drivers, bridge, linux-security-module, amd-gfx, linux-stm32,
	cluster-devel, linux-acpi, coreteam, intel-wired-lan,
	linux-input, Miguel Ojeda, tipc-discussion, linux-ext4,
	linux-media, linux-watchdog, selinux, linux-arm-msm, intel-gfx,
	linux-geode, linux-can, linux-block, linux-gpio, op-tee,
	linux-mediatek, xen-devel, nouveau, linux-hams, ceph-devel,
	virtualization, linux-arm-kernel, linux-hwmon, x86, linux-nfs,
	GR-Linux-NIC-Dev, linux-mm, netdev, linux-decnet-user, linux-mmc,
	Gustavo A. R. Silva, linux-renesas-soc, linux-sctp, linux-usb,
	netfilter-devel, linux-crypto, patches, Joe Perches,
	linux-integrity, target-devel, linux-hardening

On Sun, Nov 22, 2020 at 08:17:03AM -0800, Kees Cook wrote:
> On Fri, Nov 20, 2020 at 11:51:42AM -0800, Jakub Kicinski wrote:
> > On Fri, 20 Nov 2020 11:30:40 -0800 Kees Cook wrote:
> > > On Fri, Nov 20, 2020 at 10:53:44AM -0800, Jakub Kicinski wrote:
> > > > On Fri, 20 Nov 2020 12:21:39 -0600 Gustavo A. R. Silva wrote:  
> > > > > This series aims to fix almost all remaining fall-through warnings in
> > > > > order to enable -Wimplicit-fallthrough for Clang.
> > > > > 
> > > > > In preparation to enable -Wimplicit-fallthrough for Clang, explicitly
> > > > > add multiple break/goto/return/fallthrough statements instead of just
> > > > > letting the code fall through to the next case.
> > > > > 
> > > > > Notice that in order to enable -Wimplicit-fallthrough for Clang, this
> > > > > change[1] is meant to be reverted at some point. So, this patch helps
> > > > > to move in that direction.
> > > > > 
> > > > > Something important to mention is that there is currently a discrepancy
> > > > > between GCC and Clang when dealing with switch fall-through to empty case
> > > > > statements or to cases that only contain a break/continue/return
> > > > > statement[2][3][4].  
> > > > 
> > > > Are we sure we want to make this change? Was it discussed before?
> > > > 
> > > > Are there any bugs Clangs puritanical definition of fallthrough helped
> > > > find?
> > > > 
> > > > IMVHO compiler warnings are supposed to warn about issues that could
> > > > be bugs. Falling through to default: break; can hardly be a bug?!  
> > > 
> > > It's certainly a place where the intent is not always clear. I think
> > > this makes all the cases unambiguous, and doesn't impact the machine
> > > code, since the compiler will happily optimize away any behavioral
> > > redundancy.
> > 
> > If none of the 140 patches here fix a real bug, and there is no change
> > to machine code then it sounds to me like a W=2 kind of a warning.
> 
> FWIW, this series has found at least one bug so far:
> https://lore.kernel.org/lkml/CAFCwf11izHF=g1mGry1fE5kvFFFrxzhPSM6qKAO8gxSp=Kr_CQ@mail.gmail.com/

This is a fallthrough to a return and not to a break.  That should
trigger a warning.  The fallthrough to a break should not generate a
warning.

The bug we're trying to fix is "missing break statement" but if the
result of the bug is "we hit a break statement" then now we're just
talking about style.  GCC should limit itself to warning about
potentially buggy code.

regards,
dan carpenter

^ permalink raw reply	[flat|nested] 73+ messages in thread

* Re: [PATCH 000/141] Fix fall-through warnings for Clang
  2020-11-24  1:32         ` Nick Desaulniers
  2020-11-24 21:25           ` Kees Cook
@ 2020-12-01 14:08           ` Dan Carpenter
  1 sibling, 0 replies; 73+ messages in thread
From: Dan Carpenter @ 2020-12-01 14:08 UTC (permalink / raw)
  To: Nick Desaulniers
  Cc: Kees Cook, alsa-devel, linux-atm-general, reiserfs-devel,
	linux-iio, linux-wireless, linux-fbdev, dri-devel, LKML,
	Nathan Chancellor, linux-ide, dm-devel, keyrings, linux-mtd,
	GR-everest-linux-l2, wcn36xx, samba-technical, linux-i3c,
	linux1394-devel, linux-afs, usb-storage, drbd-dev, devel,
	linux-cifs, rds-devel, linux-scsi, linux-rdma, oss-drivers,
	bridge, linux-security-module, amd-gfx list, linux-stm32,
	cluster-devel, linux-acpi, coreteam, intel-wired-lan,
	linux-input, Miguel Ojeda, Jakub Kicinski, linux-ext4,
	linux-media, linux-watchdog, selinux, linux-arm-msm, intel-gfx,
	linux-geode, linux-can, linux-block, linux-gpio, op-tee,
	linux-mediatek, xen-devel, nouveau, linux-hams, ceph-devel,
	virtualization, Linux ARM, linux-hwmon,
	maintainer:X86 ARCHITECTURE (32-BIT AND 64-BIT),
	linux-nfs, GR-Linux-NIC-Dev, tipc-discussion,
	Linux Memory Management List, Network Development,
	linux-decnet-user, linux-mmc, Gustavo A. R. Silva, Linux-Renesas,
	linux-sctp, linux-usb, netfilter-devel,
	open list:HARDWARE RANDOM NUMBER GENERATOR CORE, patches,
	Joe Perches, linux-integrity, target-devel, linux-hardening

On Mon, Nov 23, 2020 at 05:32:51PM -0800, Nick Desaulniers wrote:
> On Sun, Nov 22, 2020 at 8:17 AM Kees Cook <keescook@chromium.org> wrote:
> >
> > On Fri, Nov 20, 2020 at 11:51:42AM -0800, Jakub Kicinski wrote:
> > > If none of the 140 patches here fix a real bug, and there is no change
> > > to machine code then it sounds to me like a W=2 kind of a warning.
> >
> > FWIW, this series has found at least one bug so far:
> > https://lore.kernel.org/lkml/CAFCwf11izHF=g1mGry1fE5kvFFFrxzhPSM6qKAO8gxSp=Kr_CQ@mail.gmail.com/
> 
> So looks like the bulk of these are:
> switch (x) {
>   case 0:
>     ++x;
>   default:
>     break;
> }

This should not generate a warning.

> 
> I have a patch that fixes those up for clang:
> https://reviews.llvm.org/D91895
> 
> There's 3 other cases that don't quite match between GCC and Clang I
> observe in the kernel:
> switch (x) {
>   case 0:
>     ++x;
>   default:
>     goto y;
> }
> y:;

This should generate a warning.

> 
> switch (x) {
>   case 0:
>     ++x;
>   default:
>     return;
> }

Warn for this.


> 
> switch (x) {
>   case 0:
>     ++x;
>   default:
>     ;
> }

Don't warn for this.

If adding a break statement changes the flow of the code then warn about
potentially missing break statements, but if it doesn't change anything
then don't warn about it.

regards,
dan carpenter

^ permalink raw reply	[flat|nested] 73+ messages in thread

* Re: (subset) [PATCH 000/141] Fix fall-through warnings for Clang
  2020-11-20 18:21 [PATCH 000/141] Fix fall-through warnings for Clang Gustavo A. R. Silva
                   ` (6 preceding siblings ...)
  2020-12-01  5:52 ` Martin K. Petersen
@ 2020-12-08  4:52 ` Martin K. Petersen
  7 siblings, 0 replies; 73+ messages in thread
From: Martin K. Petersen @ 2020-12-08  4:52 UTC (permalink / raw)
  To: linux-kernel, Gustavo A. R. Silva
  Cc: Martin K . Petersen, coreteam, selinux, Miguel Ojeda,
	Joe Perches, linux-hardening, reiserfs-devel, amd-gfx, patches,
	linux-fbdev, keyrings, Nick Desaulniers, linux-geode, linux-gpio,
	linux-hams, linux-ext4, wcn36xx, GR-everest-linux-l2, x86,
	linux-watchdog, linux-media, linux-cifs, linux-nfs, linux-iio,
	linux-usb, devel, linux-atm-general, linux-wireless,
	linux-crypto, linux-decnet-user, Nathan Chancellor,
	netfilter-devel, target-devel, linux-integrity, virtualization,
	linux-mediatek, Kees Cook, samba-technical, ceph-devel, drbd-dev,
	intel-gfx, dm-devel, linux-acpi, linux-ide, xen-devel, op-tee,
	linux-hwmon, linux-sctp, bridge, linux-mtd, linux-input,
	linux-can, rds-devel, oss-drivers, tipc-discussion,
	cluster-devel, linux-rdma, dri-devel, linux-arm-kernel,
	linux-block, usb-storage, linux1394-devel, alsa-devel, linux-i3c,
	linux-arm-msm, linux-mmc, linux-scsi, linux-afs, nouveau,
	GR-Linux-NIC-Dev, netdev, linux-security-module, linux-stm32,
	linux-mm, intel-wired-lan, linux-renesas-soc

On Fri, 20 Nov 2020 12:21:39 -0600, Gustavo A. R. Silva wrote:

> This series aims to fix almost all remaining fall-through warnings in
> order to enable -Wimplicit-fallthrough for Clang.
> 
> In preparation to enable -Wimplicit-fallthrough for Clang, explicitly
> add multiple break/goto/return/fallthrough statements instead of just
> letting the code fall through to the next case.
> 
> [...]

Applied to 5.11/scsi-queue, thanks!

[054/141] target: Fix fall-through warnings for Clang
          https://git.kernel.org/mkp/scsi/c/492096ecfa39

-- 
Martin K. Petersen	Oracle Linux Engineering

^ permalink raw reply	[flat|nested] 73+ messages in thread

* Re: [PATCH 057/141] watchdog: Fix fall-through warnings for Clang
  2020-11-20 18:32 ` [PATCH 057/141] watchdog: " Gustavo A. R. Silva
  2020-11-21 18:49   ` Guenter Roeck
@ 2021-03-04 23:04   ` Gustavo A. R. Silva
  2021-03-05  4:15     ` Guenter Roeck
  2021-05-17 23:54   ` Gustavo A. R. Silva
  2 siblings, 1 reply; 73+ messages in thread
From: Gustavo A. R. Silva @ 2021-03-04 23:04 UTC (permalink / raw)
  To: Wim Van Sebroeck, Guenter Roeck
  Cc: linux-watchdog, linux-kernel, linux-hardening

Hi all,

It's been more than 3 months; who can take this, please? :)

Thanks
--
Gustavo

On Fri, Nov 20, 2020 at 12:32:51PM -0600, Gustavo A. R. Silva wrote:
> In preparation to enable -Wimplicit-fallthrough for Clang, fix a warning
> by explicitly adding a fallthrough pseudo-keyword instead of letting the
> code fall through to the next case.
> 
> Link: https://github.com/KSPP/linux/issues/115
> Signed-off-by: Gustavo A. R. Silva <gustavoars@kernel.org>
> ---
>  drivers/watchdog/machzwd.c | 1 +
>  1 file changed, 1 insertion(+)
> 
> diff --git a/drivers/watchdog/machzwd.c b/drivers/watchdog/machzwd.c
> index 743377c5b173..73f2221f6222 100644
> --- a/drivers/watchdog/machzwd.c
> +++ b/drivers/watchdog/machzwd.c
> @@ -174,6 +174,7 @@ static inline void zf_set_timer(unsigned short new, unsigned char n)
>  		fallthrough;
>  	case WD2:
>  		zf_writeb(COUNTER_2, new > 0xff ? 0xff : new);
> +		fallthrough;
>  	default:
>  		return;
>  	}
> -- 
> 2.27.0
> 

^ permalink raw reply	[flat|nested] 73+ messages in thread

* Re: [PATCH 057/141] watchdog: Fix fall-through warnings for Clang
  2021-03-04 23:04   ` Gustavo A. R. Silva
@ 2021-03-05  4:15     ` Guenter Roeck
  2021-03-05  5:21       ` Gustavo A. R. Silva
  0 siblings, 1 reply; 73+ messages in thread
From: Guenter Roeck @ 2021-03-05  4:15 UTC (permalink / raw)
  To: Gustavo A. R. Silva
  Cc: Wim Van Sebroeck, linux-watchdog, linux-kernel, linux-hardening

On Thu, Mar 04, 2021 at 05:04:06PM -0600, Gustavo A. R. Silva wrote:
> Hi all,
> 
> It's been more than 3 months; who can take this, please? :)
> 

I am not in favor of cosmetic patches for old drivers,
and I am not going to provide tags for them anymore.
The driver should be converted to use the watchdog core,
or it should be dropped.

Guenter

^ permalink raw reply	[flat|nested] 73+ messages in thread

* Re: [PATCH 057/141] watchdog: Fix fall-through warnings for Clang
  2021-03-05  4:15     ` Guenter Roeck
@ 2021-03-05  5:21       ` Gustavo A. R. Silva
  0 siblings, 0 replies; 73+ messages in thread
From: Gustavo A. R. Silva @ 2021-03-05  5:21 UTC (permalink / raw)
  To: Guenter Roeck
  Cc: Wim Van Sebroeck, linux-watchdog, linux-kernel, linux-hardening

On Thu, Mar 04, 2021 at 08:15:12PM -0800, Guenter Roeck wrote:
> On Thu, Mar 04, 2021 at 05:04:06PM -0600, Gustavo A. R. Silva wrote:
> > Hi all,
> > 
> > It's been more than 3 months; who can take this, please? :)
> > 
> 
> I am not in favor of cosmetic patches for old drivers,

Me either. However, this is not a cosmetic patch[1].

> and I am not going to provide tags for them anymore.
> The driver should be converted to use the watchdog core,
> or it should be dropped.

Is it OK with you if I carry this in my tree for a future pull-request
to Linus?

Thanks!
--
Gustavo

[1] https://github.com/KSPP/linux/issues/115

^ permalink raw reply	[flat|nested] 73+ messages in thread

* Re: [PATCH 057/141] watchdog: Fix fall-through warnings for Clang
  2020-11-20 18:32 ` [PATCH 057/141] watchdog: " Gustavo A. R. Silva
  2020-11-21 18:49   ` Guenter Roeck
  2021-03-04 23:04   ` Gustavo A. R. Silva
@ 2021-05-17 23:54   ` Gustavo A. R. Silva
  2 siblings, 0 replies; 73+ messages in thread
From: Gustavo A. R. Silva @ 2021-05-17 23:54 UTC (permalink / raw)
  To: Gustavo A. R. Silva, Wim Van Sebroeck, Guenter Roeck
  Cc: linux-watchdog, linux-kernel, linux-hardening

Hi all,

I'm taking this in my -next[1] branch for v5.14.

Thanks
--
Gustavo

[1] https://git.kernel.org/pub/scm/linux/kernel/git/gustavoars/linux.git/log/?h=for-next/kspp

On 11/20/20 12:32, Gustavo A. R. Silva wrote:
> In preparation to enable -Wimplicit-fallthrough for Clang, fix a warning
> by explicitly adding a fallthrough pseudo-keyword instead of letting the
> code fall through to the next case.
> 
> Link: https://github.com/KSPP/linux/issues/115
> Signed-off-by: Gustavo A. R. Silva <gustavoars@kernel.org>
> ---
>  drivers/watchdog/machzwd.c | 1 +
>  1 file changed, 1 insertion(+)
> 
> diff --git a/drivers/watchdog/machzwd.c b/drivers/watchdog/machzwd.c
> index 743377c5b173..73f2221f6222 100644
> --- a/drivers/watchdog/machzwd.c
> +++ b/drivers/watchdog/machzwd.c
> @@ -174,6 +174,7 @@ static inline void zf_set_timer(unsigned short new, unsigned char n)
>  		fallthrough;
>  	case WD2:
>  		zf_writeb(COUNTER_2, new > 0xff ? 0xff : new);
> +		fallthrough;
>  	default:
>  		return;
>  	}
> 

^ permalink raw reply	[flat|nested] 73+ messages in thread

end of thread, other threads:[~2021-05-18  0:16 UTC | newest]

Thread overview: 73+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-11-20 18:21 [PATCH 000/141] Fix fall-through warnings for Clang Gustavo A. R. Silva
2020-11-20 18:28 ` Joe Perches
2020-11-20 19:02   ` Gustavo A. R. Silva
2020-11-20 18:32 ` [PATCH 057/141] watchdog: " Gustavo A. R. Silva
2020-11-21 18:49   ` Guenter Roeck
2020-11-23 22:50     ` Gustavo A. R. Silva
2021-03-04 23:04   ` Gustavo A. R. Silva
2021-03-05  4:15     ` Guenter Roeck
2021-03-05  5:21       ` Gustavo A. R. Silva
2021-05-17 23:54   ` Gustavo A. R. Silva
2020-11-20 18:53 ` [PATCH 000/141] " Jakub Kicinski
2020-11-20 19:04   ` Gustavo A. R. Silva
2020-11-20 19:30   ` Kees Cook
2020-11-20 19:51     ` Jakub Kicinski
2020-11-20 20:48       ` Kees Cook
2020-11-22 16:17       ` Kees Cook
2020-11-22 18:21         ` James Bottomley
2020-11-22 18:25           ` Joe Perches
2020-11-22 19:12             ` James Bottomley
2020-11-22 19:22               ` Joe Perches
2020-11-22 19:53                 ` James Bottomley
2020-11-23 13:03                   ` [Intel-wired-lan] " Gustavo A. R. Silva
2020-11-23 16:31                     ` James Bottomley
2020-11-24 21:32                       ` Kees Cook
2020-11-24 22:24                         ` Finn Thain
2020-11-24 23:15                           ` Miguel Ojeda
2020-11-24 23:53                             ` Finn Thain
2020-11-25  1:05                               ` Miguel Ojeda
2020-11-25  7:05                         ` James Bottomley
2020-11-25 12:24                           ` Nick Desaulniers
2020-11-25 21:33                             ` Finn Thain
2020-11-25 22:09                               ` Nick Desaulniers
2020-11-25 23:21                                 ` Finn Thain
2020-11-26  0:30                                 ` Finn Thain
     [not found]                             ` <20201125082405.1d8c23dc@kicinski-fedora-pc1c0hjn.dhcp.thefacebook.com>
2020-11-25 17:04                               ` Miguel Ojeda
2020-11-25 22:09                               ` Nick Desaulniers
2020-11-25 21:10                           ` Kees Cook
2020-11-22 20:35           ` Miguel Ojeda
2020-11-22 22:36             ` James Bottomley
2020-11-23 14:19               ` Miguel Ojeda
2020-11-23 15:58                 ` James Bottomley
2020-11-23 16:24                   ` Rafael J. Wysocki
2020-11-23 16:32                   ` Joe Perches
2020-11-23 18:56                   ` Miguel Ojeda
2020-11-23 20:37                     ` James Bottomley
2020-11-25  0:32                       ` Miguel Ojeda
2020-11-25 22:44                         ` Edward Cree
2020-11-26 14:53                           ` Miguel Ojeda
2020-11-26 15:28                             ` Geert Uytterhoeven
2020-11-26 16:18                               ` Karol Herbst
2020-11-26 17:05                               ` Miguel Ojeda
2020-11-25 10:38                       ` Andy Shevchenko
2020-11-25  9:01                   ` Sean Young
2020-11-22 22:54             ` Finn Thain
2020-11-22 23:04               ` James Bottomley
2020-11-23 14:05               ` Miguel Ojeda
2020-11-24  0:58                 ` Finn Thain
2020-11-24  1:05                   ` Joe Perches
2020-11-24  2:48                     ` Finn Thain
2020-11-24 23:46                   ` Miguel Ojeda
2020-11-22 22:10           ` Sam Ravnborg
2020-11-24  1:32         ` Nick Desaulniers
2020-11-24 21:25           ` Kees Cook
2020-11-25 23:02             ` Edward Cree
2020-12-01 14:08           ` Dan Carpenter
2020-12-01 14:04         ` Dan Carpenter
2020-11-20 22:21 ` Miguel Ojeda
2020-11-23 20:03 ` Jason Gunthorpe
2020-11-24 14:47   ` Gustavo A. R. Silva
     [not found] ` <160616392671.21180.16517492185091399884.b4-ty@kernel.org>
2020-11-24 14:47   ` Gustavo A. R. Silva
2020-12-01  5:52 ` Martin K. Petersen
2020-12-01  8:20   ` Gustavo A. R. Silva
2020-12-08  4:52 ` (subset) " Martin K. Petersen

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).