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:	Sun, 29 Nov 2009 09:17:26 -0800
From:	Greg KH <greg@...ah.com>
To:	Jon Smirl <jonsmirl@...il.com>
Cc:	linux-media@...r.kernel.org, linux-kernel@...r.kernel.org,
	linux-input@...r.kernel.org
Subject: Re: [IR-RFC PATCH v4 2/6] Core IR module

> +static ssize_t ir_raw_show(struct device *dev,
> +				 struct device_attribute *attr, char *buf)
> +{
> +	struct input_dev *input_dev = to_input_dev(dev);
> +	unsigned int i, count = 0;
> +
> +	for (i = input_dev->ir->raw.tail; i != input_dev->ir->raw.head; ) {
> +
> +		count += snprintf(&buf[count], PAGE_SIZE - 1, "%i\n", input_dev->ir->raw.buffer[i++]);
> +		if (i > ARRAY_SIZE(input_dev->ir->raw.buffer))
> +			i = 0;
> +		if (count >= PAGE_SIZE - 1) {
> +			input_dev->ir->raw.tail = i;
> +			return PAGE_SIZE - 1;
> +		}
> +	}
> +	input_dev->ir->raw.tail = i;
> +	return count;
> +}

This looks like it violates the "one value per sysfs file" rule that we
have.  What exactly are you outputting here?  It does not look like this
belongs in sysfs at all.

> +static ssize_t ir_raw_store(struct device *dev,
> +				  struct device_attribute *attr,
> +				  const char *buf,
> +				  size_t count)
> +{
> +	struct ir_device *ir = to_input_dev(dev)->ir;
> +	long delta;
> +	int i = count;
> +	int first = 0;
> +
> +	if (!ir->xmit)
> +		return count;
> +	ir->send.count = 0;
> +
> +	while (i > 0) {
> +		i -= strict_strtoul(&buf[i], i, &delta);
> +		while ((buf[i] != '\n') && (i > 0))
> +			i--;
> +		i--;
> +		/* skip leading zeros */
> +		if ((delta > 0) && !first)
> +			continue;
> +
> +		ir->send.buffer[ir->send.count++] = abs(delta);
> +	}
> +
> +	ir->xmit(ir->private, ir->send.buffer, ir->send.count, ir->raw.carrier, ir->raw.xmitter);
> +
> +	return count;
> +}

What type of data are you expecting here?  More than one value?

thanks,

greg k-h
--
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