Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1209574
| From | Dan Streetman <ddstreet@ieee.org> |
|---|---|
| Newsgroups | linux.kernel |
| Subject | Re: [PATCH 1/2] zpool: define and use max type length |
| Date | 2015-08-19 04:30 +0200 |
| Message-ID | <pZ1ix-Dk-7@gated-at.bofh.it> (permalink) |
| References | <pYVmO-8bi-11@gated-at.bofh.it> <pYXHY-3Pc-11@gated-at.bofh.it> |
| Organization | linux.* mail to news gateway |
On Tue, Aug 18, 2015 at 6:38 PM, Andrew Morton
<akpm@linux-foundation.org> wrote:
> On Tue, 18 Aug 2015 16:06:00 -0400 Dan Streetman <ddstreet@ieee.org> wrote:
>
>> Add ZPOOL_MAX_TYPE_NAME define, and change zpool_driver *type field to
>> type[ZPOOL_MAX_TYPE_NAME]. Remove redundant type field from struct zpool
>> and use zpool->driver->type instead.
>>
>> The define will be used by zswap for its zpool param type name length.
>>
>
> Patchset is fugly. All this putzing around with fixed-length strings,
> worrying about overflow and is-it-null-terminated-or-isnt-it. Shudder.
>
> It's much better to use variable-length strings everywhere. We're not
> operating in contexts which can't use kmalloc, we're not
> performance-intensive and these strings aren't being written to
> fixed-size fields on disk or anything. Why do we need any fixed-length
> strings?
>
> IOW, why not just replace that alloca with a kstrdup()?
for the zpool drivers (zbud and zsmalloc), the type is actually just
statically assigned, e.g. .type = "zbud", so you're right the *type is
better than type[]. I'll update it.
>
>> --- a/include/linux/zpool.h
>> +++ b/include/linux/zpool.h
>>
>> ...
>>
>> @@ -79,7 +77,7 @@ static struct zpool_driver *zpool_get_driver(char *type)
>>
>> spin_lock(&drivers_lock);
>> list_for_each_entry(driver, &drivers_head, list) {
>> - if (!strcmp(driver->type, type)) {
>> + if (!strncmp(driver->type, type, ZPOOL_MAX_TYPE_NAME)) {
>
> Why strncmp? Please tell me these strings are always null-terminated.
Yep, you're right. The driver->type always is, and the type param is
passed in from sysfs, which we can rely on to be null-terminated.
>
>
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Back to linux.kernel | Previous | Next — Previous in thread | Find similar | Unroll thread
[PATCH 1/2] zpool: define and use max type length Dan Streetman <ddstreet@ieee.org> - 2015-08-18 22:10 +0200
[PATCH 2/2] zswap: use const max length for kparam names Dan Streetman <ddstreet@ieee.org> - 2015-08-18 22:10 +0200
Re: [PATCH 1/2] zpool: define and use max type length Andrew Morton <akpm@linux-foundation.org> - 2015-08-19 00:40 +0200
Re: [PATCH 1/2] zpool: define and use max type length Dan Streetman <ddstreet@ieee.org> - 2015-08-19 04:30 +0200
csiph-web