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 for Android: free password hash cracker in your pocket
[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Date:	Tue, 29 Apr 2008 11:15:30 -0700 (PDT)
From:	Trent Piepho <tpiepho@...escale.com>
To:	Ben Nizette <bn@...sdigital.com>
cc:	David Brownell <david-b@...bell.net>,
	lkml <linux-kernel@...r.kernel.org>,
	hartleys <hartleys@...ionengravers.com>,
	Mike Frysinger <vapier.adi@...il.com>,
	Bryan Wu <cooloney@...nel.org>
Subject: Re: [patch/rfc 2.6.25-git] gpio: sysfs interface

On Tue, 29 Apr 2008, Ben Nizette wrote:
> On Mon, 2008-04-28 at 22:48 -0700, Trent Piepho wrote:
>> On Mon, 28 Apr 2008, David Brownell wrote:
>>> On Monday 28 April 2008, Trent Piepho wrote:
>>>> I liked it better they way I had it, "label:N".
>>>
>>> Those labels may not be available though; or valid in pathnames.
>>
>> So just fall back to "gpio" if there is no label?  The only character that's
>> not valid in a pathname is '/', so that's trivial to check for.
>>
>> const char *label = chip->label && !strchr(chip->label, '/') ?
>>  	chip->label : "gpio"; /* or "generic" or "unknown", or ...*/
>>
>> This means you don't need a file with number to device assignents.  It makes
>> shell scripting a lot easier too.  Say I want the first gpio on a pca9557 gpio
>> expander?  It's will be something like:  /sys/class/gpio/pca9557-0:0
>>
>> You don't have to worry about dynamic assigments.  You don't have to resort to
>> convoluted shell script code to extract the proper range from a mapping file
>> and then construct the name.
>
> Sorry if I'm being dense; how do you want this bit to work?  As I see
> it, there are a few options:
>
> 1) Have the files named as you suggest and all of them always present,
> albeit read-only until export.  Very easy to use, easy to discover which
> file is which, a decent bit of memory usage having them all listed.

Well, is it really that much?  There are 579 files under /sys/class/tty.  But
suppose it is too much (why isn't tty too much then?), then we can do 3.

> 3) Have the files named as you suggest, explicit export/request but
> better parsing behind the control file so something like
> echo "export pca9557-0:5" > control
> works.  Very very nice for the user, big heavy back end.

The back end doesn't seem that big to me.  Here's code for it.  If anything,
the parsing code is simpler than what David has.  It's certainly not huge. 
David's code for parsing the control file plus code for generating a mapping
range file would certainly be larger.


/* Format:  -?(chiplabel:)?number
  * The optional leading - unexports the gpio, without it the gpio is exported.
  * The optional chip label followed by a : gives you the Nth gpio of that
  * chip.  With no label you get gpio "number".
  */

static ssize_t control_store(struct class *class, const char *buf, size_t len)
{
 	const char *numstr;
 	unsigned long num;
 	int mode = 0;

 	if (buf[0] == '-') { /* un-export? */
 		mode = 1;
 		buf++;
 	}

 	numstr = strrchr(buf, ':');

 	/* Get GPIO number */
 	if (strict_strtoul(numstr ? numstr + 1 : buf, 0, &num))
 		return -EINVAL;

 	/* Match chip label, if one was specified */
 	if (numstr) {
 		/* No + 1 in len to not include the ':' at the end */
 		int i, len = numstr - buf;
 		const struct gpio_chip *chip = NULL;

 		for (i = 0; gpio_is_valid(i); i++) {
 			if (chip == gpio_desc[i].chip)
 				continue;
 			chip = gpio_desc[i].chip;
 			if (!chip)
 				continue;

 			if (!strncmp(buf, chip->label, len) &&
 			    chip->label[len] == '\0')
 				goto found_chip;
 		}
 		return -EINVAL;
found_chip:
 		if (num >= chip->ngpio)
 			return -EINVAL;
 		num += chip->base;
 	}

 	if (mode) {
 		/* Unexport */
 		if (!gpio_is_valid(num))
 			return -EINVAL;
 		if (!test_and_clear_bit(FLAG_SYSFS, &gpio_desc[num].flags))
 			return -EINVAL;

 		gpio_free(num);
 	} else {
 		/* Export */
 		int status = gpio_request(num, "sysfs");

 		if (status < 0)
 			return status;

 		status = gpio_export(num);
 		if (status < 0) {
 			gpio_free(num);
 			return status;
 		}

 		set_bit(FLAG_SYSFS, &gpio_desc[num].flags);
 	}

 	return len;
}
--
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