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
 
Hash Suite: Windows password security audit tool. GUI, reports in PDF.
[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Date:	Wed, 28 Dec 2011 14:14:38 -0800
From:	Joe Perches <joe@...ches.com>
To:	Alan Cox <alan@...rguk.ukuu.org.uk>
Cc:	greg@...ah.com, linux-kernel@...r.kernel.org,
	Mark Allyn <mark.a.allyn@...el.com>
Subject: Re: [PATCH] sep: SEP update

On Wed, 2011-12-28 at 17:37 +0000, Alan Cox wrote:
> From: Mark Allyn <mark.a.allyn@...el.com>
> The new driver supports the kernel crypto layer, passes the coding style checks,
> passes human taste checks and has proper kernel-doc formatted comments.

These are just taste comments.

> diff --git a/drivers/staging/sep/sep_crypto.c b/drivers/staging/sep/sep_crypto.c
[]
#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt

> +/* #define DEBUG */
> +#include <linux/init.h>
[]
> +	sep_work->callback = funct;
> +	sep_work->data = data;
> +	INIT_WORK(&sep_work->work, sep_do_callback);
> +	result = queue_work(work_queue, &sep_work->work);
> +	if (!result) {
> +		pr_debug("sep_crypto: queue_work failed\n");

So these pr_debug and any other pr_<level> become:
		pr_debug("queue_work failed\n");

> +/* Debug - prints only if DEBUG is defined; follows kernel debug model */
> +static void sep_dump(struct sep_device *sep, char *stg, void *start, int len)
> +{
> +#if 0
> +	int ct1;
> +	u8 *ptt;
> +
> +	dev_dbg(&sep->pdev->dev,
> +		"Dump of %s starting at %08lx for %08x bytes\n",
> +		stg, (unsigned long)start, len);
> +	for (ct1 = 0; ct1 < len; ct1 += 1) {
> +		ptt = (u8 *)(start + ct1);
> +		dev_dbg(&sep->pdev->dev, "%02x ", *ptt);
> +		if (ct1 % 16 == 15)
> +			dev_dbg(&sep->pdev->dev, "\n");
> +	}

While this is #if 0, more likely it should
use print_hex_dump_bytes

> +/**
> + * RFC2451: Weak key check
> + * Returns: 1 (weak), 0 (not weak)
> + */
> +static int sep_weak_key(const u8 *key, unsigned int keylen)
> +{
> +	static const u8 parity[] = {
> +	8, 1, 0, 8, 0, 8, 8, 0, 0, 8, 8, 0, 8, 0, 2, 8,
> +	0, 8, 8, 0, 8, 0, 0, 8, 8,
> +	0, 0, 8, 0, 8, 8, 3,

Any reason this is formatted with line lengths of 16, 9, 7
instea of all 16?

> +	0, 8, 8, 0, 8, 0, 0, 8, 8, 0, 0, 8, 0, 8, 8, 0,
> +	8, 0, 0, 8, 0, 8, 8, 0, 0,
> +	8, 8, 0, 8, 0, 0, 8,

> +	if (!((n - (w >> 3)) & w)) {
> +		if (n < 0x41415151) {

Perhaps use a switch/case instead of an 
difficult to read binary chop?


> +			/* Portion of msg is nulled (no data) */
> +			msg[0] = (u32)0;

The casts of zero are odd.

--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

Powered by blists - more mailing lists

Powered by Openwall GNU/*/Linux Powered by OpenVZ