Branch data Line data Source code
1 : : /* SPDX-License-Identifier: LGPL-2.1+ */ 2 : : 3 : : #include <errno.h> 4 : : #include <stdio.h> 5 : : #include <string.h> 6 : : 7 : : #include "device-nodes.h" 8 : : #include "utf8.h" 9 : : 10 : 516 : int whitelisted_char_for_devnode(char c, const char *white) { 11 : : 12 [ + + + + : 516 : if ((c >= '0' && c <= '9') || + + ] 13 [ + - + + ]: 344 : (c >= 'A' && c <= 'Z') || 14 [ - + ]: 284 : (c >= 'a' && c <= 'z') || 15 [ + + - + ]: 60 : strchr("#+-.:=@_", c) != NULL || 16 [ # # ]: 0 : (white != NULL && strchr(white, c) != NULL)) 17 : 488 : return 1; 18 : : 19 : 28 : return 0; 20 : : } 21 : : 22 : 40 : int encode_devnode_name(const char *str, char *str_enc, size_t len) { 23 : : size_t i, j; 24 : : 25 [ + - - + ]: 40 : if (!str || !str_enc) 26 : 0 : return -EINVAL; 27 : : 28 [ + + ]: 576 : for (i = 0, j = 0; str[i] != '\0'; i++) { 29 : : int seqlen; 30 : : 31 : 536 : seqlen = utf8_encoded_valid_unichar(str + i, (size_t) -1); 32 [ + + ]: 536 : if (seqlen > 1) { 33 : : 34 [ - + ]: 16 : if (len-j < (size_t)seqlen) 35 : 0 : return -EINVAL; 36 : : 37 : 16 : memcpy(&str_enc[j], &str[i], seqlen); 38 : 16 : j += seqlen; 39 : 16 : i += (seqlen-1); 40 : : 41 [ + + + + ]: 520 : } else if (str[i] == '\\' || !whitelisted_char_for_devnode(str[i], NULL)) { 42 : : 43 [ - + ]: 32 : if (len-j < 4) 44 : 0 : return -EINVAL; 45 : : 46 : 32 : sprintf(&str_enc[j], "\\x%02x", (unsigned char) str[i]); 47 : 32 : j += 4; 48 : : 49 : : } else { 50 [ - + ]: 488 : if (len-j < 1) 51 : 0 : return -EINVAL; 52 : : 53 : 488 : str_enc[j] = str[i]; 54 : 488 : j++; 55 : : } 56 : : } 57 : : 58 [ - + ]: 40 : if (len-j < 1) 59 : 0 : return -EINVAL; 60 : : 61 : 40 : str_enc[j] = '\0'; 62 : 40 : return 0; 63 : : }