Whamcloud - gitweb
LU-4629 libcfs: fix buffer overflow of string buffer
[fs/lustre-release.git] / libcfs / libcfs / user-string.c
1 /*
2  * GPL HEADER START
3  *
4  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
5  *
6  * This program is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License version 2 only,
8  * as published by the Free Software Foundation.
9  *
10  * This program is distributed in the hope that it will be useful, but
11  * WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13  * General Public License version 2 for more details (a copy is included
14  * in the LICENSE file that accompanied this code).
15  *
16  * You should have received a copy of the GNU General Public License
17  * version 2 along with this program; If not, see
18  * http://www.gnu.org/licenses/gpl-2.0.html
19  *
20  * GPL HEADER END
21  */
22 /*
23  * Copyright (c) 2014 Intel Corporation.
24  */
25 #ifndef __KERNEL__
26
27 #include <string.h>
28
29 /*
30  * According manual of strlcpy() and strlcat() the functions should return
31  * the total length of the string they tried to create. For strlcpy() that
32  * means the length of src. For strlcat() that means the initial length of
33  * dst plus the length of src. So, the function strnlen() cannot be used
34  * otherwise the return value will be wrong.
35  */
36 #ifndef HAVE_STRLCPY /* not in glibc for RHEL 5.x, remove when obsolete */
37 size_t strlcpy(char *dst, const char *src, size_t size)
38 {
39         size_t ret = strlen(src);
40
41         if (size) {
42                 size_t len = (ret >= size) ? size - 1 : ret;
43                 memcpy(dst, src, len);
44                 dst[len] = '\0';
45         }
46         return ret;
47 }
48 #endif
49
50 #ifndef HAVE_STRLCAT /* not in glibc for RHEL 5.x, remove when obsolete */
51 size_t strlcat(char *dst, const char *src, size_t size)
52 {
53         size_t dsize = strlen(dst);
54         size_t len = strlen(src);
55         size_t ret = dsize + len;
56
57         dst  += dsize;
58         size -= dsize;
59         if (len >= size)
60                 len = size-1;
61         memcpy(dst, src, len);
62         dst[len] = '\0';
63         return ret;
64 }
65 #endif
66
67 #endif /* __KERNEL__ */