public inbox for linux-arm-kernel@lists.infradead.org
 help / color / mirror / Atom feed
From: juliac@eso.teric.us (Julia Cartwright)
To: linux-arm-kernel@lists.infradead.org
Subject: [patch v18 1/4] drivers: jtag: Add JTAG core driver
Date: Mon, 29 Jan 2018 09:56:00 -0600	[thread overview]
Message-ID: <20180129155600.GA1924@kryptos.localdomain> (raw)
In-Reply-To: <1517236305-4880-2-git-send-email-oleksandrs@mellanox.com>

On Mon, Jan 29, 2018 at 04:31:42PM +0200, Oleksandr Shamray wrote:
> Initial patch for JTAG driver
> JTAG class driver provide infrastructure to support hardware/software
> JTAG platform drivers. It provide user layer API interface for flashing
> and debugging external devices which equipped with JTAG interface
> using standard transactions.
> 
> Driver exposes set of IOCTL to user space for:
> - XFER:
> - SIR (Scan Instruction Register, IEEE 1149.1 Data Register scan);
> - SDR (Scan Data Register, IEEE 1149.1 Instruction Register scan);
> - RUNTEST (Forces the IEEE 1149.1 bus to a run state for a specified
>   number of clocks).
> - SIOCFREQ/GIOCFREQ for setting and reading JTAG frequency.
> 
> Driver core provides set of internal APIs for allocation and
> registration:
> - jtag_register;
> - jtag_unregister;
> - jtag_alloc;
> - jtag_free;
> 
> Platform driver on registration with jtag-core creates the next
> entry in dev folder:
> /dev/jtagX
> 
> Signed-off-by: Oleksandr Shamray <oleksandrs@mellanox.com>
> Signed-off-by: Jiri Pirko <jiri@mellanox.com>
> Acked-by: Philippe Ombredanne <pombredanne@nexb.com>
[..]
> diff --git a/drivers/jtag/jtag.c b/drivers/jtag/jtag.c
[..]
> +struct jtag *jtag_alloc(size_t priv_size, const struct jtag_ops *ops)
> +{
> +	struct jtag *jtag;
> +
> +	jtag = kzalloc(sizeof(*jtag) + priv_size, GFP_KERNEL);
> +	if (!jtag)
> +		return NULL;
> +
> +	if (!ops)
> +		return NULL;
> +
> +	if (!ops->idle || !ops->mode_set || !ops->status_get || !ops->xfer)
> +		return NULL;

Did you think through this?

You leak 'jtag' here and above.

Perform all the ops checks prior to the allocation.

   Julia

  reply	other threads:[~2018-01-29 15:56 UTC|newest]

Thread overview: 8+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2018-01-29 14:31 [patch v18 0/4] JTAG driver introduction Oleksandr Shamray
2018-01-29 14:31 ` [patch v18 1/4] drivers: jtag: Add JTAG core driver Oleksandr Shamray
2018-01-29 15:56   ` Julia Cartwright [this message]
2018-01-29 14:31 ` [patch v18 2/4] drivers: jtag: Add Aspeed SoC 24xx and 25xx families JTAG master driver Oleksandr Shamray
2018-01-29 14:31 ` [patch v18 3/4] Documentation: jtag: Add bindings for " Oleksandr Shamray
2018-01-29 14:31 ` [patch v18 4/4] Documentation: jtag: Add ABI documentation Oleksandr Shamray
2018-01-31  3:03 ` [patch v18 0/4] JTAG driver introduction Florian Fainelli
2018-05-10 15:13   ` Oleksandr Shamray

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20180129155600.GA1924@kryptos.localdomain \
    --to=juliac@eso.teric.us \
    --cc=linux-arm-kernel@lists.infradead.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox