1ad30f8e7SGabor Kovesdan /* $NetBSD: iconv.c,v 1.16 2009/02/20 15:28:21 yamt Exp $ */
2ad30f8e7SGabor Kovesdan
3ad30f8e7SGabor Kovesdan /*-
41de7b4b8SPedro F. Giffuni * SPDX-License-Identifier: BSD-2-Clause
51de7b4b8SPedro F. Giffuni *
6ad30f8e7SGabor Kovesdan * Copyright (c)2003 Citrus Project,
7ad30f8e7SGabor Kovesdan * All rights reserved.
8ad30f8e7SGabor Kovesdan *
9ad30f8e7SGabor Kovesdan * Redistribution and use in source and binary forms, with or without
10ad30f8e7SGabor Kovesdan * modification, are permitted provided that the following conditions
11ad30f8e7SGabor Kovesdan * are met:
12ad30f8e7SGabor Kovesdan * 1. Redistributions of source code must retain the above copyright
13ad30f8e7SGabor Kovesdan * notice, this list of conditions and the following disclaimer.
14ad30f8e7SGabor Kovesdan * 2. Redistributions in binary form must reproduce the above copyright
15ad30f8e7SGabor Kovesdan * notice, this list of conditions and the following disclaimer in the
16ad30f8e7SGabor Kovesdan * documentation and/or other materials provided with the distribution.
17ad30f8e7SGabor Kovesdan *
18ad30f8e7SGabor Kovesdan * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
19ad30f8e7SGabor Kovesdan * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
20ad30f8e7SGabor Kovesdan * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
21ad30f8e7SGabor Kovesdan * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
22ad30f8e7SGabor Kovesdan * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
23ad30f8e7SGabor Kovesdan * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
24ad30f8e7SGabor Kovesdan * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
25ad30f8e7SGabor Kovesdan * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
26ad30f8e7SGabor Kovesdan * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
27ad30f8e7SGabor Kovesdan * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
28ad30f8e7SGabor Kovesdan * SUCH DAMAGE.
29ad30f8e7SGabor Kovesdan */
30ad30f8e7SGabor Kovesdan
31280dd9fcSConrad Meyer #include <sys/capsicum.h>
32ad30f8e7SGabor Kovesdan
33280dd9fcSConrad Meyer #include <capsicum_helpers.h>
34ad30f8e7SGabor Kovesdan #include <err.h>
35ad30f8e7SGabor Kovesdan #include <errno.h>
36ad30f8e7SGabor Kovesdan #include <getopt.h>
37ad30f8e7SGabor Kovesdan #include <iconv.h>
38ad30f8e7SGabor Kovesdan #include <limits.h>
39ad30f8e7SGabor Kovesdan #include <locale.h>
40ad30f8e7SGabor Kovesdan #include <stdbool.h>
41ad30f8e7SGabor Kovesdan #include <stdio.h>
42ad30f8e7SGabor Kovesdan #include <stdlib.h>
43ad30f8e7SGabor Kovesdan #include <string.h>
44ad30f8e7SGabor Kovesdan #include <unistd.h>
45ad30f8e7SGabor Kovesdan
46280dd9fcSConrad Meyer static int do_conv(FILE *, iconv_t, bool, bool);
47ad30f8e7SGabor Kovesdan static int do_list(unsigned int, const char * const *, void *);
4879304f98STijl Coosemans static void usage(void) __dead2;
49ad30f8e7SGabor Kovesdan
5079304f98STijl Coosemans static const struct option long_options[] = {
51ad30f8e7SGabor Kovesdan {"from-code", required_argument, NULL, 'f'},
52ad30f8e7SGabor Kovesdan {"list", no_argument, NULL, 'l'},
53ad30f8e7SGabor Kovesdan {"silent", no_argument, NULL, 's'},
54ad30f8e7SGabor Kovesdan {"to-code", required_argument, NULL, 't'},
55ad30f8e7SGabor Kovesdan {NULL, no_argument, NULL, 0}
56ad30f8e7SGabor Kovesdan };
57ad30f8e7SGabor Kovesdan
58ad30f8e7SGabor Kovesdan static void
usage(void)59ad30f8e7SGabor Kovesdan usage(void)
60ad30f8e7SGabor Kovesdan {
61ad30f8e7SGabor Kovesdan (void)fprintf(stderr,
62ad30f8e7SGabor Kovesdan "Usage:\t%1$s [-cs] -f <from_code> -t <to_code> [file ...]\n"
63ad30f8e7SGabor Kovesdan "\t%1$s -f <from_code> [-cs] [-t <to_code>] [file ...]\n"
64ad30f8e7SGabor Kovesdan "\t%1$s -t <to_code> [-cs] [-f <from_code>] [file ...]\n"
65ad30f8e7SGabor Kovesdan "\t%1$s -l\n", getprogname());
66ad30f8e7SGabor Kovesdan exit(1);
67ad30f8e7SGabor Kovesdan }
68ad30f8e7SGabor Kovesdan
69ad30f8e7SGabor Kovesdan #define INBUFSIZE 1024
70ad30f8e7SGabor Kovesdan #define OUTBUFSIZE (INBUFSIZE * 2)
7179304f98STijl Coosemans static int
do_conv(FILE * fp,iconv_t cd,bool silent,bool hide_invalid)72280dd9fcSConrad Meyer do_conv(FILE *fp, iconv_t cd, bool silent, bool hide_invalid)
73ad30f8e7SGabor Kovesdan {
741243a98eSTijl Coosemans char inbuf[INBUFSIZE], outbuf[OUTBUFSIZE], *in, *out;
7579304f98STijl Coosemans unsigned long long invalids;
76ad30f8e7SGabor Kovesdan size_t inbytes, outbytes, ret;
77ad30f8e7SGabor Kovesdan
78*ea0f37deSKyle Evans /*
79*ea0f37deSKyle Evans * Don't touch ICONV_SET_DISCARD_ILSEQ if -c wasn't specified. It may
80*ea0f37deSKyle Evans * be that the user has specified //IGNORE in the -t specification, and
81*ea0f37deSKyle Evans * we don't want to clobber that.
82*ea0f37deSKyle Evans */
83*ea0f37deSKyle Evans if (hide_invalid) {
84280dd9fcSConrad Meyer int arg = (int)hide_invalid;
85ad30f8e7SGabor Kovesdan if (iconvctl(cd, ICONV_SET_DISCARD_ILSEQ, (void *)&arg) == -1)
86280dd9fcSConrad Meyer err(EXIT_FAILURE, "iconvctl(DISCARD_ILSEQ, %d)", arg);
87*ea0f37deSKyle Evans }
88280dd9fcSConrad Meyer
8979304f98STijl Coosemans invalids = 0;
90ad30f8e7SGabor Kovesdan while ((inbytes = fread(inbuf, 1, INBUFSIZE, fp)) > 0) {
91ad30f8e7SGabor Kovesdan in = inbuf;
92ad30f8e7SGabor Kovesdan while (inbytes > 0) {
93ad30f8e7SGabor Kovesdan size_t inval;
94ad30f8e7SGabor Kovesdan
95ad30f8e7SGabor Kovesdan out = outbuf;
96ad30f8e7SGabor Kovesdan outbytes = OUTBUFSIZE;
97ad30f8e7SGabor Kovesdan ret = __iconv(cd, &in, &inbytes, &out, &outbytes,
98ad30f8e7SGabor Kovesdan 0, &inval);
99ad30f8e7SGabor Kovesdan invalids += inval;
100ad30f8e7SGabor Kovesdan if (outbytes < OUTBUFSIZE)
101ad30f8e7SGabor Kovesdan (void)fwrite(outbuf, 1, OUTBUFSIZE - outbytes,
102ad30f8e7SGabor Kovesdan stdout);
103ad30f8e7SGabor Kovesdan if (ret == (size_t)-1 && errno != E2BIG) {
104ad30f8e7SGabor Kovesdan if (errno != EINVAL || in == inbuf)
105ad30f8e7SGabor Kovesdan err(EXIT_FAILURE, "iconv()");
106ad30f8e7SGabor Kovesdan
107ad30f8e7SGabor Kovesdan /* incomplete input character */
108ad30f8e7SGabor Kovesdan (void)memmove(inbuf, in, inbytes);
109ad30f8e7SGabor Kovesdan ret = fread(inbuf + inbytes, 1,
110ad30f8e7SGabor Kovesdan INBUFSIZE - inbytes, fp);
111ad30f8e7SGabor Kovesdan if (ret == 0) {
112ad30f8e7SGabor Kovesdan fflush(stdout);
113ad30f8e7SGabor Kovesdan if (feof(fp))
114ad30f8e7SGabor Kovesdan errx(EXIT_FAILURE,
115ad30f8e7SGabor Kovesdan "unexpected end of file; "
116ad30f8e7SGabor Kovesdan "the last character is "
117ad30f8e7SGabor Kovesdan "incomplete.");
118ad30f8e7SGabor Kovesdan else
119ad30f8e7SGabor Kovesdan err(EXIT_FAILURE, "fread()");
120ad30f8e7SGabor Kovesdan }
121ad30f8e7SGabor Kovesdan in = inbuf;
122ad30f8e7SGabor Kovesdan inbytes += ret;
123ad30f8e7SGabor Kovesdan }
124ad30f8e7SGabor Kovesdan }
125ad30f8e7SGabor Kovesdan }
126ad30f8e7SGabor Kovesdan /* reset the shift state of the output buffer */
127ad30f8e7SGabor Kovesdan outbytes = OUTBUFSIZE;
128ad30f8e7SGabor Kovesdan out = outbuf;
129ad30f8e7SGabor Kovesdan ret = iconv(cd, NULL, NULL, &out, &outbytes);
130ad30f8e7SGabor Kovesdan if (ret == (size_t)-1)
131ad30f8e7SGabor Kovesdan err(EXIT_FAILURE, "iconv()");
132ad30f8e7SGabor Kovesdan if (outbytes < OUTBUFSIZE)
133ad30f8e7SGabor Kovesdan (void)fwrite(outbuf, 1, OUTBUFSIZE - outbytes, stdout);
134ad30f8e7SGabor Kovesdan
135ad30f8e7SGabor Kovesdan if (invalids > 0 && !silent)
136ad30f8e7SGabor Kovesdan warnx("warning: invalid characters: %llu", invalids);
137ad30f8e7SGabor Kovesdan
13879304f98STijl Coosemans return (invalids > 0);
139ad30f8e7SGabor Kovesdan }
140ad30f8e7SGabor Kovesdan
141ad30f8e7SGabor Kovesdan static int
do_list(unsigned int n,const char * const * list,void * data __unused)142ad30f8e7SGabor Kovesdan do_list(unsigned int n, const char * const *list, void *data __unused)
143ad30f8e7SGabor Kovesdan {
144ad30f8e7SGabor Kovesdan unsigned int i;
145ad30f8e7SGabor Kovesdan
146ad30f8e7SGabor Kovesdan for(i = 0; i < n; i++) {
147ad30f8e7SGabor Kovesdan printf("%s", list[i]);
148ad30f8e7SGabor Kovesdan if (i < n - 1)
149ad30f8e7SGabor Kovesdan printf(" ");
150ad30f8e7SGabor Kovesdan }
151ad30f8e7SGabor Kovesdan printf("\n");
152ad30f8e7SGabor Kovesdan
153ad30f8e7SGabor Kovesdan return (1);
154ad30f8e7SGabor Kovesdan }
155ad30f8e7SGabor Kovesdan
156ad30f8e7SGabor Kovesdan int
main(int argc,char ** argv)157ad30f8e7SGabor Kovesdan main(int argc, char **argv)
158ad30f8e7SGabor Kovesdan {
159280dd9fcSConrad Meyer iconv_t cd;
160ad30f8e7SGabor Kovesdan FILE *fp;
161670f0143SXin LI const char *opt_f, *opt_t;
16279304f98STijl Coosemans int ch, i, res;
163ad30f8e7SGabor Kovesdan bool opt_c = false, opt_s = false;
164ad30f8e7SGabor Kovesdan
165670f0143SXin LI opt_f = opt_t = "";
166ad30f8e7SGabor Kovesdan
167ad30f8e7SGabor Kovesdan setlocale(LC_ALL, "");
168ad30f8e7SGabor Kovesdan setprogname(argv[0]);
169ad30f8e7SGabor Kovesdan
170ad30f8e7SGabor Kovesdan while ((ch = getopt_long(argc, argv, "csLlf:t:",
171ad30f8e7SGabor Kovesdan long_options, NULL)) != -1) {
172ad30f8e7SGabor Kovesdan switch (ch) {
173ad30f8e7SGabor Kovesdan case 'c':
174ad30f8e7SGabor Kovesdan opt_c = true;
175ad30f8e7SGabor Kovesdan break;
176ad30f8e7SGabor Kovesdan case 's':
177ad30f8e7SGabor Kovesdan opt_s = true;
178ad30f8e7SGabor Kovesdan break;
179ad30f8e7SGabor Kovesdan case 'l':
180ad30f8e7SGabor Kovesdan /* list */
181ad30f8e7SGabor Kovesdan if (opt_s || opt_c || strcmp(opt_f, "") != 0 ||
182ad30f8e7SGabor Kovesdan strcmp(opt_t, "") != 0) {
183ad30f8e7SGabor Kovesdan warnx("-l is not allowed with other flags.");
184ad30f8e7SGabor Kovesdan usage();
185ad30f8e7SGabor Kovesdan }
186ad30f8e7SGabor Kovesdan iconvlist(do_list, NULL);
187ad30f8e7SGabor Kovesdan return (EXIT_SUCCESS);
188ad30f8e7SGabor Kovesdan case 'f':
189ad30f8e7SGabor Kovesdan /* from */
190ad30f8e7SGabor Kovesdan if (optarg != NULL)
191670f0143SXin LI opt_f = optarg;
192ad30f8e7SGabor Kovesdan break;
193ad30f8e7SGabor Kovesdan case 't':
194ad30f8e7SGabor Kovesdan /* to */
195ad30f8e7SGabor Kovesdan if (optarg != NULL)
196670f0143SXin LI opt_t = optarg;
197ad30f8e7SGabor Kovesdan break;
198ad30f8e7SGabor Kovesdan default:
199ad30f8e7SGabor Kovesdan usage();
200ad30f8e7SGabor Kovesdan }
201ad30f8e7SGabor Kovesdan }
202ad30f8e7SGabor Kovesdan argc -= optind;
203ad30f8e7SGabor Kovesdan argv += optind;
204ad30f8e7SGabor Kovesdan if ((strcmp(opt_f, "") == 0) && (strcmp(opt_t, "") == 0))
205ad30f8e7SGabor Kovesdan usage();
206280dd9fcSConrad Meyer
207280dd9fcSConrad Meyer if (caph_limit_stdio() < 0)
208280dd9fcSConrad Meyer err(EXIT_FAILURE, "capsicum");
209280dd9fcSConrad Meyer
210280dd9fcSConrad Meyer /*
211280dd9fcSConrad Meyer * Cache NLS data, for strerror, for err(3), before entering capability
212280dd9fcSConrad Meyer * mode.
213280dd9fcSConrad Meyer */
214280dd9fcSConrad Meyer caph_cache_catpages();
215280dd9fcSConrad Meyer
216280dd9fcSConrad Meyer /*
217280dd9fcSConrad Meyer * Cache iconv conversion handle before entering sandbox.
218280dd9fcSConrad Meyer */
219280dd9fcSConrad Meyer cd = iconv_open(opt_t, opt_f);
220280dd9fcSConrad Meyer if (cd == (iconv_t)-1)
221280dd9fcSConrad Meyer err(EXIT_FAILURE, "iconv_open(%s, %s)", opt_t, opt_f);
222280dd9fcSConrad Meyer
223280dd9fcSConrad Meyer if (argc == 0) {
2247672a014SMariusz Zaborski if (caph_enter() < 0)
225280dd9fcSConrad Meyer err(EXIT_FAILURE, "unable to enter capability mode");
226280dd9fcSConrad Meyer res = do_conv(stdin, cd, opt_s, opt_c);
227280dd9fcSConrad Meyer } else {
22879304f98STijl Coosemans res = 0;
229ad30f8e7SGabor Kovesdan for (i = 0; i < argc; i++) {
230ad30f8e7SGabor Kovesdan fp = (strcmp(argv[i], "-") != 0) ?
231ad30f8e7SGabor Kovesdan fopen(argv[i], "r") : stdin;
232ad30f8e7SGabor Kovesdan if (fp == NULL)
233ad30f8e7SGabor Kovesdan err(EXIT_FAILURE, "Cannot open `%s'",
234ad30f8e7SGabor Kovesdan argv[i]);
235280dd9fcSConrad Meyer /* Enter Capsicum sandbox for final input file. */
2367672a014SMariusz Zaborski if (i + 1 == argc && caph_enter() < 0)
237280dd9fcSConrad Meyer err(EXIT_FAILURE,
238280dd9fcSConrad Meyer "unable to enter capability mode");
239280dd9fcSConrad Meyer res |= do_conv(fp, cd, opt_s, opt_c);
240ad30f8e7SGabor Kovesdan (void)fclose(fp);
241280dd9fcSConrad Meyer
242280dd9fcSConrad Meyer /* Reset iconv descriptor state. */
243280dd9fcSConrad Meyer (void)iconv(cd, NULL, NULL, NULL, NULL);
244ad30f8e7SGabor Kovesdan }
245ad30f8e7SGabor Kovesdan }
246280dd9fcSConrad Meyer iconv_close(cd);
24779304f98STijl Coosemans return (res == 0 ? EXIT_SUCCESS : EXIT_FAILURE);
248ad30f8e7SGabor Kovesdan }
249