lists.openwall.net | lists / announce owl-users owl-dev john-users john-dev passwdqc-users yescrypt popa3d-users / oss-security kernel-hardening musl sabotage tlsify passwords / crypt-dev xvendor / Bugtraq Full-Disclosure linux-kernel linux-netdev linux-ext4 linux-hardening linux-cve-announce PHC | |
Open Source and information security mailing list archives
| ||
|
Message-ID: <CAKOOJTwh6TnNM4uSM2rbaij=xO92UzF2hs11pgOFUniOb3HAkA@mail.gmail.com> Date: Fri, 24 Sep 2021 10:20:32 -0700 From: Edwin Peer <edwin.peer@...adcom.com> To: Jakub Kicinski <kuba@...nel.org> Cc: Leon Romanovsky <leon@...nel.org>, "David S . Miller" <davem@...emloft.net>, Alexander Lobakin <alobakin@...me>, Anirudh Venkataramanan <anirudh.venkataramanan@...el.com>, Ariel Elior <aelior@...vell.com>, GR-everest-linux-l2@...vell.com, GR-QLogic-Storage-Upstream@...vell.com, Igor Russkikh <irusskikh@...vell.com>, intel-wired-lan@...ts.osuosl.org, "James E.J. Bottomley" <jejb@...ux.ibm.com>, Javed Hasan <jhasan@...vell.com>, Jeff Kirsher <jeffrey.t.kirsher@...el.com>, Jesse Brandeburg <jesse.brandeburg@...el.com>, Jiri Pirko <jiri@...dia.com>, Linux Kernel Mailing List <linux-kernel@...r.kernel.org>, linux-scsi@...r.kernel.org, "Martin K. Petersen" <martin.petersen@...cle.com>, Michael Chan <michael.chan@...adcom.com>, Michal Kalderon <michal.kalderon@...vell.com>, netdev <netdev@...r.kernel.org>, Sathya Perla <sathya.perla@...adcom.com>, Saurav Kashyap <skashyap@...vell.com>, Tony Nguyen <anthony.l.nguyen@...el.com>, Vasundhara Volam <vasundhara-v.volam@...adcom.com> Subject: Re: [PATCH net-next 1/6] bnxt_en: Check devlink allocation and registration status On Thu, Sep 23, 2021 at 6:39 PM Jakub Kicinski <kuba@...nel.org> wrote: > On Fri, 24 Sep 2021 02:11:19 +0300 Leon Romanovsky wrote: > > > minor nit: There's obviously nothing incorrect about doing this (and > > > adding the additional error label in the cleanup code above), but bnxt > > > has generally adopted a style of having cleanup functions being > > > idempotent. It generally makes error handling simpler and less error > > > prone. > > > > I would argue that opposite is true. Such "impossible" checks hide unwind > > flow errors, missing releases e.t.c. > > +1, fwiw I appreciate that being more explicit can improve visibility, but it does not make error handling inherently less error prone, nor is it simpler (ie. the opposite isn't true). Idempotency is orthogonal to unwind flow or the presence or not of a particular unwind handler (one can still enforce either in review). But, if release handlers are independent (most in bnxt are), then permitting other orderings can be perfectly valid and places less burden on achieving the canonical form for correctness (ie. usage is simpler and less error prone). That's not to say we should throw caution to the wind and allow arbitrary unwind flows, but it does mean certain mistakes don't result in actual bugs. There are other flexibility benefits too. A single, unwind everything, handler can be reused in more than one context. That said, isn't the more important question what style and assumptions the surrounding code has adopted? In this particular case, I checked that this change wouldn't introduce the possibility of a double unwind, but in other contexts in this driver code base, changing error handling in this piecemeal way might actually introduce a bug in contexts where the caller has assumed the overall function is idempotent. Isn't local consistency of style a more important concern, especially given that you are not predominantly responsible for maintenance of this driver? Dealing with this exception to the norm in our driver certainly places an additional burden on us to remember to treat this particular case with special care. We should either rework all of bnxt error handling to adopt the more accepted canonical form, or we should adopt the surrounding conventions. What we shouldn't do is mix approaches in one driver. Regards, Edwin Peer
Powered by blists - more mailing lists