summaryrefslogtreecommitdiffstats
path: root/include/linux/string_helpers.h
diff options
context:
space:
mode:
authorKees Cook2016-04-21 00:46:25 +0200
committerJames Morris2016-04-21 02:47:26 +0200
commit21985319add60b55fc27230d9421a3e5af7e998a (patch)
treeb6684d0914ddfbf34da20da2c7608e89694f7596 /include/linux/string_helpers.h
parentstring_helpers: add kstrdup_quotable_cmdline (diff)
downloadkernel-qcow2-linux-21985319add60b55fc27230d9421a3e5af7e998a.tar.gz
kernel-qcow2-linux-21985319add60b55fc27230d9421a3e5af7e998a.tar.xz
kernel-qcow2-linux-21985319add60b55fc27230d9421a3e5af7e998a.zip
string_helpers: add kstrdup_quotable_file
Allocate a NULL-terminated file path with special characters escaped, safe for logging. Signed-off-by: Kees Cook <keescook@chromium.org> Signed-off-by: James Morris <james.l.morris@oracle.com>
Diffstat (limited to 'include/linux/string_helpers.h')
-rw-r--r--include/linux/string_helpers.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/include/linux/string_helpers.h b/include/linux/string_helpers.h
index 684d2695fc36..5ce9538f290e 100644
--- a/include/linux/string_helpers.h
+++ b/include/linux/string_helpers.h
@@ -3,6 +3,8 @@
#include <linux/types.h>
+struct file;
+
/* Descriptions of the types of units to
* print in */
enum string_size_units {
@@ -70,5 +72,6 @@ static inline int string_escape_str_any_np(const char *src, char *dst,
char *kstrdup_quotable(const char *src, gfp_t gfp);
char *kstrdup_quotable_cmdline(struct task_struct *task, gfp_t gfp);
+char *kstrdup_quotable_file(struct file *file, gfp_t gfp);
#endif