From: Markus Mayer <mmayer-dY08KVG/lbpWk0Htik3J/w@public.gmane.org>
To: Chris Metcalf <cmetcalf-VPRAkNaXOzVWk0Htik3J/w@public.gmane.org>,
Rasmus Villemoes
<linux-qQsb+v5E8BnlAoU/VqSP6n9LOBIZ5rWg@public.gmane.org>
Cc: devel-gWbeCf7V1WCQmaza687I9mD2FQJk+8+b@public.gmane.org,
Kees Cook <keescook-F7+t8E8rja9g9hUCZPvPmw@public.gmane.org>,
linux-scsi-u79uwXL29TY76Z2rM5mHXA@public.gmane.org,
linux-pm-u79uwXL29TY76Z2rM5mHXA@public.gmane.org,
nouveau-PD4FTy7X32lNgt0PjOBp9y5qC8QIuHrW@public.gmane.org,
speakup-UPO/6gOIxNZglr+F8WMZYdi2O/JbrIOy@public.gmane.org,
Linux Kernel
<linux-kernel-u79uwXL29TY76Z2rM5mHXA@public.gmane.org>,
dri-devel-PD4FTy7X32lNgt0PjOBp9y5qC8QIuHrW@public.gmane.org,
linux-acpi-u79uwXL29TY76Z2rM5mHXA@public.gmane.org,
target-devel-u79uwXL29TY76Z2rM5mHXA@public.gmane.org,
Al Viro <viro-RmSDqhL/yNMiFSDQTTA3OLVCufUGDwFn@public.gmane.org>,
Andrew Morton
<akpm-de/tnXTf+JLsfHDXvbKv3WD2FQJk+8+b@public.gmane.org>
Subject: Re: [PATCH v3 0/7] lib: string: add functions to case-convert strings
Date: Wed, 13 Jul 2016 15:52:38 -0700 [thread overview]
Message-ID: <20160713225236.GA30571@lbrmn-mmayer.ric.broadcom.com> (raw)
In-Reply-To: <CAGt4E5t0TGMxiUfV5Mx+EGyAYAmTOCEJe4QxjpjujvZfPwvYuQ-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
On Sat, Jul 09, 2016 at 09:11:05PM -0700, Markus Mayer wrote:
> On 9 July 2016 at 20:13, Chris Metcalf <cmetcalf@mellanox.com> wrote:
> > On 7/8/2016 6:43 PM, Markus Mayer wrote:
> >>
> >> This series introduces a family of generic string case conversion
> >> functions. This kind of functionality is needed in several places in
> >> the kernel. Right now, everybody seems to be implementing their own
> >> copy of this functionality.
> >>
> >> Based on the discussion of the previous version of this series[1] and
> >> the use cases found in the kernel, it does look like having several
> >> flavours of case conversion functions is beneficial. The use cases fall
> >> into three categories:
> >> - copying a string and converting the case while specifying a
> >> maximum length to mimic strlcpy()
> >> - copying a string and converting the case without specifying a
> >> length to mimic strcpy()
> >> - converting the case of a string in-place (i.e. modifying the
> >> string that was passed in)
> >>
> >> Consequently, I am proposing these new functions:
> >> void strlcpytoupper(char *dst, const char *src, size_t len);
> >> void strlcpytolower(char *dst, const char *src, size_t len);
> >> void strcpytoupper(char *dst, const char *src);
> >> void strcpytolower(char *dst, const char *src);
> >> void strtoupper(char *s);
> >> void strtolower(char *s);
> >
> >
> > You may want to read the article here:
> >
> > https://lwn.net/Articles/659214/
>
> I'll read that. Thanks.
It doesn't look like there is going to be the danger of "mass changes".
So far, I have two ACKs (one where the semantics doesn't change,
because it's using strtolower()) and the other in a driver in staging.
But I understand the concern and will keep an eye out if there are
other ACKs.
> > and follow up some of the discussion threads on LKML about the best
> > semantics to advertise for the strlcpy/strscpy variants. It might
> > be helpful to return some kind of overflow/truncation error from
> > your copy functions so people can error-check the result.
>
> I am inclined to agree. However, everybody has been telling me that
> these functions should be void. Originally they weren't.
What about something like this? It might also work to keep the four
static inline functions as "void" (since they won't ever return E2BIG
anyway) and just have strlcpyto* return an integer (since that's where
the buffer could be too small).
Rasmus, what's your take?
diff --git a/include/linux/string.h b/include/linux/string.h
index ae82d13..6cc85dc 100644
--- a/include/linux/string.h
+++ b/include/linux/string.h
@@ -116,8 +116,8 @@ extern void * memchr(const void *,int,__kernel_size_t);
#endif
void *memchr_inv(const void *s, int c, size_t n);
char *strreplace(char *s, char old, char new);
-extern void strlcpytoupper(char *dst, const char *src, size_t len);
-extern void strlcpytolower(char *dst, const char *src, size_t len);
+extern int strlcpytoupper(char *dst, const char *src, size_t len);
+extern int strlcpytolower(char *dst, const char *src, size_t len);
extern void kfree_const(const void *x);
@@ -175,38 +175,46 @@ static inline const char *kbasename(const char *path)
* strcpytoupper - Copy string and convert to uppercase.
* @dst: The buffer to store the result.
* @src: The string to convert to uppercase.
+ *
+ * Returns the number of characters copied.
*/
-static inline void strcpytoupper(char *dst, const char *src)
+static inline int strcpytoupper(char *dst, const char *src)
{
- strlcpytoupper(dst, src, ~(size_t)0);
+ return strlcpytoupper(dst, src, ~(size_t)0);
}
/**
* strcpytolower - Copy string and convert to lowercase.
* @dst: The buffer to store the result.
* @src: The string to convert to lowercase.
+ *
+ * Returns the number of characters copied.
*/
-static inline void strcpytolower(char *dst, const char *src)
+static inline int strcpytolower(char *dst, const char *src)
{
- strlcpytolower(dst, src, ~(size_t)0);
+ return strlcpytolower(dst, src, ~(size_t)0);
}
/**
* strtoupper - Convert string to uppercase.
* @s: The string to operate on.
+ *
+ * Returns the number of characters copied.
*/
-static inline void strtoupper(char *s)
+static inline int strtoupper(char *s)
{
- strlcpytoupper(s, s, ~(size_t)0);
+ return strlcpytoupper(s, s, ~(size_t)0);
}
/**
* strtolower - Convert string to lowercase.
* @s: The string to operate on.
+ *
+ * Returns the number of characters copied.
*/
-static inline void strtolower(char *s)
+static inline int strtolower(char *s)
{
- strlcpytolower(s, s, ~(size_t)0);
+ return strlcpytolower(s, s, ~(size_t)0);
}
#endif /* _LINUX_STRING_H_ */
diff --git a/lib/string.c b/lib/string.c
index 7903e10..d36d5fb2 100644
--- a/lib/string.c
+++ b/lib/string.c
@@ -958,17 +958,21 @@ EXPORT_SYMBOL(strreplace);
* @dst: The buffer to store the result.
* @src: The string to convert to uppercase.
* @len: Maximum string length. May be SIZE_MAX to set no limit.
+ *
+ * Returns the number of characters copied or -E2BIG if @dst wasn't big enough.
*/
-void strlcpytoupper(char *dst, const char *src, size_t len)
+int strlcpytoupper(char *dst, const char *src, size_t len)
{
size_t i;
if (!len)
- return;
+ return -E2BIG;
for (i = 0; i < len && src[i]; ++i)
dst[i] = toupper(src[i]);
dst[i < len ? i : i - 1] = '\0';
+
+ return (i < len) ? i : -E2BIG;
}
EXPORT_SYMBOL(strlcpytoupper);
@@ -977,16 +981,20 @@ EXPORT_SYMBOL(strlcpytoupper);
* @dst: The buffer to store the result.
* @src: The string to convert to lowercase.
* @len: Maximum string length. May be SIZE_MAX to set no limit.
+ *
+ * Returns the number of characters copied or -E2BIG if @dst wasn't big enough.
*/
-void strlcpytolower(char *dst, const char *src, size_t len)
+int strlcpytolower(char *dst, const char *src, size_t len)
{
size_t i;
if (!len)
- return;
+ return -E2BIG;
for (i = 0; i < len && src[i]; ++i)
dst[i] = tolower(src[i]);
dst[i < len ? i : i - 1] = '\0';
+
+ return (i < len) ? i : -E2BIG;
}
EXPORT_SYMBOL(strlcpytolower);
_______________________________________________
Nouveau mailing list
Nouveau@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/nouveau
next prev parent reply other threads:[~2016-07-13 22:52 UTC|newest]
Thread overview: 15+ messages / expand[flat|nested] mbox.gz Atom feed top
2016-07-08 22:43 [PATCH v3 0/7] lib: string: add functions to case-convert strings Markus Mayer
[not found] ` <1468017794-4818-1-git-send-email-mmayer-dY08KVG/lbpWk0Htik3J/w@public.gmane.org>
2016-07-08 22:43 ` [PATCH v3 1/7] " Markus Mayer
2016-07-09 12:04 ` Luis de Bethencourt
[not found] ` <5780E866.8000001-JPH+aEBZ4P+UEJcrhfAQsw@public.gmane.org>
2016-07-09 15:30 ` Markus Mayer
[not found] ` <CAGt4E5vYzkqgiiQXXjnX7az-KzCVSYthEW5Df03U=Y1qhEJdRQ-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
2016-07-11 22:46 ` Markus Mayer
[not found] ` <CAGt4E5tpw0sa1PQmgJzKbPuzSbFG9_CUWjjO1z93OSc0KkjUXw-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
2016-07-13 17:19 ` Luis de Bethencourt
[not found] ` <57867813.8010608-JPH+aEBZ4P+UEJcrhfAQsw@public.gmane.org>
2016-07-13 22:26 ` Markus Mayer
[not found] ` <CAGt4E5tRcYQeWdTLvABjpd2WgAPLmdrdEUVK33pS0J3a06wJ5w-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
2016-07-13 22:53 ` Luis de Bethencourt
[not found] ` <5786C665.6020307-JPH+aEBZ4P+UEJcrhfAQsw@public.gmane.org>
2016-07-13 23:04 ` Markus Mayer
2016-07-08 22:43 ` [PATCH v3 3/7] ACPI / device_sysfs: make use of new strtolower() function Markus Mayer
2016-07-08 23:22 ` Rafael J. Wysocki
2016-07-10 3:13 ` [PATCH v3 0/7] lib: string: add functions to case-convert strings Chris Metcalf
[not found] ` <9b88baed-a067-fcfd-d087-66e36f3060d7-VPRAkNaXOzVWk0Htik3J/w@public.gmane.org>
2016-07-10 4:11 ` Markus Mayer
[not found] ` <CAGt4E5t0TGMxiUfV5Mx+EGyAYAmTOCEJe4QxjpjujvZfPwvYuQ-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
2016-07-13 22:52 ` Markus Mayer [this message]
[not found] ` <20160713225236.GA30571-opzSsqMRwNylyEujtbL6/5Ym1tgvmhRUMm0uRHvK7Nw@public.gmane.org>
2016-07-20 20:28 ` Markus Mayer
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=20160713225236.GA30571@lbrmn-mmayer.ric.broadcom.com \
--to=mmayer-dy08kvg/lbpwk0htik3j/w@public.gmane.org \
--cc=akpm-de/tnXTf+JLsfHDXvbKv3WD2FQJk+8+b@public.gmane.org \
--cc=cmetcalf-VPRAkNaXOzVWk0Htik3J/w@public.gmane.org \
--cc=devel-gWbeCf7V1WCQmaza687I9mD2FQJk+8+b@public.gmane.org \
--cc=dri-devel-PD4FTy7X32lNgt0PjOBp9y5qC8QIuHrW@public.gmane.org \
--cc=keescook-F7+t8E8rja9g9hUCZPvPmw@public.gmane.org \
--cc=linux-acpi-u79uwXL29TY76Z2rM5mHXA@public.gmane.org \
--cc=linux-kernel-u79uwXL29TY76Z2rM5mHXA@public.gmane.org \
--cc=linux-pm-u79uwXL29TY76Z2rM5mHXA@public.gmane.org \
--cc=linux-qQsb+v5E8BnlAoU/VqSP6n9LOBIZ5rWg@public.gmane.org \
--cc=linux-scsi-u79uwXL29TY76Z2rM5mHXA@public.gmane.org \
--cc=nouveau-PD4FTy7X32lNgt0PjOBp9y5qC8QIuHrW@public.gmane.org \
--cc=speakup-UPO/6gOIxNZglr+F8WMZYdi2O/JbrIOy@public.gmane.org \
--cc=target-devel-u79uwXL29TY76Z2rM5mHXA@public.gmane.org \
--cc=viro-RmSDqhL/yNMiFSDQTTA3OLVCufUGDwFn@public.gmane.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