1 /* 2 * Copyright (c) 2000, 2001 Alexey Zelkin <phantom@FreeBSD.org> 3 * All rights reserved. 4 * 5 * Redistribution and use in source and binary forms, with or without 6 * modification, are permitted provided that the following conditions 7 * are met: 8 * 1. Redistributions of source code must retain the above copyright 9 * notice, this list of conditions and the following disclaimer. 10 * 2. Redistributions in binary form must reproduce the above copyright 11 * notice, this list of conditions and the following disclaimer in the 12 * documentation and/or other materials provided with the distribution. 13 * 14 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND 15 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 16 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 17 * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE 18 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 19 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 20 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 21 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 22 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 23 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 24 * SUCH DAMAGE. 25 */ 26 27 /* 28 * Copyright 2010 Nexenta Systems, Inc. All rights reserved. 29 */ 30 31 #include "lint.h" 32 #include "file64.h" 33 #include <sys/types.h> 34 #include <sys/stat.h> 35 #include <errno.h> 36 #include <fcntl.h> 37 #include <limits.h> 38 #include <stdlib.h> 39 #include <string.h> 40 #include <unistd.h> 41 #include <stdio.h> 42 43 #include "ldpart.h" 44 #include "setlocale.h" 45 46 static int split_lines(char *, const char *); 47 48 int 49 __part_load_locale(const char *name, int *using_locale, 50 char **locale_buf, const char *category_filename, 51 int locale_buf_size_max, int locale_buf_size_min, 52 const char **dst_localebuf) 53 { 54 int saverr, fd, i, num_lines; 55 char *lbuf, *p; 56 const char *plim; 57 char filename[PATH_MAX]; 58 struct stat st; 59 size_t namesize, bufsize; 60 61 /* 'name' must be already checked. */ 62 if (strcmp(name, "C") == 0 || strcmp(name, "POSIX") == 0) { 63 *using_locale = 0; 64 return (_LDP_CACHE); 65 } 66 67 /* 68 * If the locale name is the same as our cache, use the cache. 69 */ 70 if (*locale_buf != NULL && strcmp(name, *locale_buf) == 0) { 71 *using_locale = 1; 72 return (_LDP_CACHE); 73 } 74 75 /* 76 * Slurp the locale file into the cache. 77 */ 78 namesize = strlen(name) + 1; 79 80 /* 'PathLocale' must be already set & checked. */ 81 82 (void) snprintf(filename, sizeof (filename), "%s/%s/%s/LCL_DATA", 83 _PathLocale, name, category_filename); 84 85 if ((fd = open(filename, O_RDONLY)) < 0) 86 return (_LDP_ERROR); 87 if (fstat(fd, &st) != 0) 88 goto bad_locale; 89 if (st.st_size <= 0) { 90 errno = EINVAL; 91 goto bad_locale; 92 } 93 bufsize = namesize + st.st_size; 94 if ((lbuf = malloc(bufsize)) == NULL) { 95 errno = ENOMEM; 96 goto bad_locale; 97 } 98 (void) strcpy(lbuf, name); 99 p = lbuf + namesize; 100 plim = p + st.st_size; 101 if (read(fd, p, (size_t)st.st_size) != st.st_size) 102 goto bad_lbuf; 103 /* 104 * Parse the locale file into localebuf. 105 */ 106 if (plim[-1] != '\n') { 107 errno = EINVAL; 108 goto bad_lbuf; 109 } 110 num_lines = split_lines(p, plim); 111 if (num_lines >= locale_buf_size_max) 112 num_lines = locale_buf_size_max; 113 else if (num_lines >= locale_buf_size_min) 114 num_lines = locale_buf_size_min; 115 else { 116 errno = EINVAL; 117 goto bad_lbuf; 118 } 119 (void) close(fd); 120 /* 121 * Record the successful parse in the cache. 122 */ 123 if (*locale_buf != NULL) 124 free(*locale_buf); 125 *locale_buf = lbuf; 126 for (p = *locale_buf, i = 0; i < num_lines; i++) 127 dst_localebuf[i] = (p += strlen(p) + 1); 128 for (i = num_lines; i < locale_buf_size_max; i++) 129 dst_localebuf[i] = NULL; 130 *using_locale = 1; 131 132 return (_LDP_LOADED); 133 134 bad_lbuf: 135 saverr = errno; 136 free(lbuf); 137 errno = saverr; 138 bad_locale: 139 saverr = errno; 140 (void) close(fd); 141 errno = saverr; 142 143 return (_LDP_ERROR); 144 } 145 146 static int 147 split_lines(char *p, const char *plim) 148 { 149 int i; 150 151 i = 0; 152 while (p < plim) { 153 if (*p == '\n') { 154 *p = '\0'; 155 i++; 156 } 157 p++; 158 } 159 return (i); 160 } 161