4297a3b0d0a35d80f86fff155e288e885a100e6dGarrett D'Amore/*
2d08521bd15501c8370ba2153b9cca4f094979d0Garrett D'Amore * Copyright 2014 Garrett D'Amore <garrett@damore.org>
6b5e5868e7ebf1aff3a5abd7d0c4ef0e5fbf3648Garrett D'Amore * Copyright 2010 Nexenta Systems, Inc. All rights reserved.
4297a3b0d0a35d80f86fff155e288e885a100e6dGarrett D'Amore * Copyright (c) 2001 Alexey Zelkin <phantom@FreeBSD.org>
4297a3b0d0a35d80f86fff155e288e885a100e6dGarrett D'Amore * All rights reserved.
4297a3b0d0a35d80f86fff155e288e885a100e6dGarrett D'Amore *
4297a3b0d0a35d80f86fff155e288e885a100e6dGarrett D'Amore * Redistribution and use in source and binary forms, with or without
4297a3b0d0a35d80f86fff155e288e885a100e6dGarrett D'Amore * modification, are permitted provided that the following conditions
4297a3b0d0a35d80f86fff155e288e885a100e6dGarrett D'Amore * are met:
4297a3b0d0a35d80f86fff155e288e885a100e6dGarrett D'Amore * 1. Redistributions of source code must retain the above copyright
4297a3b0d0a35d80f86fff155e288e885a100e6dGarrett D'Amore * notice, this list of conditions and the following disclaimer.
4297a3b0d0a35d80f86fff155e288e885a100e6dGarrett D'Amore * 2. Redistributions in binary form must reproduce the above copyright
4297a3b0d0a35d80f86fff155e288e885a100e6dGarrett D'Amore * notice, this list of conditions and the following disclaimer in the
4297a3b0d0a35d80f86fff155e288e885a100e6dGarrett D'Amore * documentation and/or other materials provided with the distribution.
4297a3b0d0a35d80f86fff155e288e885a100e6dGarrett D'Amore *
4297a3b0d0a35d80f86fff155e288e885a100e6dGarrett D'Amore * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
4297a3b0d0a35d80f86fff155e288e885a100e6dGarrett D'Amore * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
4297a3b0d0a35d80f86fff155e288e885a100e6dGarrett D'Amore * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
4297a3b0d0a35d80f86fff155e288e885a100e6dGarrett D'Amore * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
4297a3b0d0a35d80f86fff155e288e885a100e6dGarrett D'Amore * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
4297a3b0d0a35d80f86fff155e288e885a100e6dGarrett D'Amore * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
4297a3b0d0a35d80f86fff155e288e885a100e6dGarrett D'Amore * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
4297a3b0d0a35d80f86fff155e288e885a100e6dGarrett D'Amore * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
4297a3b0d0a35d80f86fff155e288e885a100e6dGarrett D'Amore * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
4297a3b0d0a35d80f86fff155e288e885a100e6dGarrett D'Amore * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
4297a3b0d0a35d80f86fff155e288e885a100e6dGarrett D'Amore * SUCH DAMAGE.
4297a3b0d0a35d80f86fff155e288e885a100e6dGarrett D'Amore */
4297a3b0d0a35d80f86fff155e288e885a100e6dGarrett D'Amore
4297a3b0d0a35d80f86fff155e288e885a100e6dGarrett D'Amore#include "lint.h"
4297a3b0d0a35d80f86fff155e288e885a100e6dGarrett D'Amore#include <stddef.h>
2d08521bd15501c8370ba2153b9cca4f094979d0Garrett D'Amore#include <errno.h>
4297a3b0d0a35d80f86fff155e288e885a100e6dGarrett D'Amore#include "ldpart.h"
4297a3b0d0a35d80f86fff155e288e885a100e6dGarrett D'Amore#include "lmessages.h"
2d08521bd15501c8370ba2153b9cca4f094979d0Garrett D'Amore#include "localeimpl.h"
4297a3b0d0a35d80f86fff155e288e885a100e6dGarrett D'Amore
2d08521bd15501c8370ba2153b9cca4f094979d0Garrett D'Amore#define LCMESSAGES_SIZE_FULL (sizeof (struct lc_messages) / sizeof (char *))
4297a3b0d0a35d80f86fff155e288e885a100e6dGarrett D'Amore#define LCMESSAGES_SIZE_MIN \
2d08521bd15501c8370ba2153b9cca4f094979d0Garrett D'Amore (offsetof(struct lc_messages, yesstr) / sizeof (char *))
4297a3b0d0a35d80f86fff155e288e885a100e6dGarrett D'Amore
4297a3b0d0a35d80f86fff155e288e885a100e6dGarrett D'Amorestatic char empty[] = "";
4297a3b0d0a35d80f86fff155e288e885a100e6dGarrett D'Amore
2d08521bd15501c8370ba2153b9cca4f094979d0Garrett D'Amorestruct lc_messages lc_messages_posix = {
4297a3b0d0a35d80f86fff155e288e885a100e6dGarrett D'Amore "^[yY]", /* yesexpr */
4297a3b0d0a35d80f86fff155e288e885a100e6dGarrett D'Amore "^[nN]", /* noexpr */
4297a3b0d0a35d80f86fff155e288e885a100e6dGarrett D'Amore "yes", /* yesstr */
4297a3b0d0a35d80f86fff155e288e885a100e6dGarrett D'Amore "no" /* nostr */
4297a3b0d0a35d80f86fff155e288e885a100e6dGarrett D'Amore};
4297a3b0d0a35d80f86fff155e288e885a100e6dGarrett D'Amore
2d08521bd15501c8370ba2153b9cca4f094979d0Garrett D'Amorestruct locdata __posix_messages_locdata = {
2d08521bd15501c8370ba2153b9cca4f094979d0Garrett D'Amore .l_lname = "C",
2d08521bd15501c8370ba2153b9cca4f094979d0Garrett D'Amore .l_data = { &lc_messages_posix }
2d08521bd15501c8370ba2153b9cca4f094979d0Garrett D'Amore};
4297a3b0d0a35d80f86fff155e288e885a100e6dGarrett D'Amore
2d08521bd15501c8370ba2153b9cca4f094979d0Garrett D'Amorestruct locdata *
2d08521bd15501c8370ba2153b9cca4f094979d0Garrett D'Amore__lc_messages_load(const char *name)
4297a3b0d0a35d80f86fff155e288e885a100e6dGarrett D'Amore{
2d08521bd15501c8370ba2153b9cca4f094979d0Garrett D'Amore struct locdata *ldata;
2d08521bd15501c8370ba2153b9cca4f094979d0Garrett D'Amore struct lc_messages *lmsgs;
4297a3b0d0a35d80f86fff155e288e885a100e6dGarrett D'Amore int ret;
4297a3b0d0a35d80f86fff155e288e885a100e6dGarrett D'Amore
2d08521bd15501c8370ba2153b9cca4f094979d0Garrett D'Amore if ((ldata = __locdata_alloc(name, sizeof (*lmsgs))) == NULL)
2d08521bd15501c8370ba2153b9cca4f094979d0Garrett D'Amore return (NULL);
2d08521bd15501c8370ba2153b9cca4f094979d0Garrett D'Amore lmsgs = ldata->l_data[0];
2d08521bd15501c8370ba2153b9cca4f094979d0Garrett D'Amore
2d08521bd15501c8370ba2153b9cca4f094979d0Garrett D'Amore ret = __part_load_locale(name, (char **)&ldata->l_data[1],
2d08521bd15501c8370ba2153b9cca4f094979d0Garrett D'Amore "LC_MESSAGES", LCMESSAGES_SIZE_FULL, LCMESSAGES_SIZE_MIN,
2d08521bd15501c8370ba2153b9cca4f094979d0Garrett D'Amore (const char **)lmsgs);
2d08521bd15501c8370ba2153b9cca4f094979d0Garrett D'Amore
2d08521bd15501c8370ba2153b9cca4f094979d0Garrett D'Amore if (ret != _LDP_LOADED) {
2d08521bd15501c8370ba2153b9cca4f094979d0Garrett D'Amore __locdata_free(ldata);
2d08521bd15501c8370ba2153b9cca4f094979d0Garrett D'Amore errno = EINVAL;
2d08521bd15501c8370ba2153b9cca4f094979d0Garrett D'Amore return (NULL);
4297a3b0d0a35d80f86fff155e288e885a100e6dGarrett D'Amore }
4297a3b0d0a35d80f86fff155e288e885a100e6dGarrett D'Amore
2d08521bd15501c8370ba2153b9cca4f094979d0Garrett D'Amore if (lmsgs->yesstr == NULL)
2d08521bd15501c8370ba2153b9cca4f094979d0Garrett D'Amore lmsgs->yesstr = empty;
2d08521bd15501c8370ba2153b9cca4f094979d0Garrett D'Amore if (lmsgs->nostr == NULL)
2d08521bd15501c8370ba2153b9cca4f094979d0Garrett D'Amore lmsgs->nostr = empty;
2d08521bd15501c8370ba2153b9cca4f094979d0Garrett D'Amore
2d08521bd15501c8370ba2153b9cca4f094979d0Garrett D'Amore return (ldata);
4297a3b0d0a35d80f86fff155e288e885a100e6dGarrett D'Amore}