1 /* $NetBSD: shquote.c,v 1.8 2006/03/19 02:33:02 christos Exp $ */
4 * Copyright (c) 2001 Christopher G. Demetriou
7 * Redistribution and use in source and binary forms, with or without
8 * modification, are permitted provided that the following conditions
10 * 1. Redistributions of source code must retain the above copyright
11 * notice, this list of conditions and the following disclaimer.
12 * 2. Redistributions in binary form must reproduce the above copyright
13 * notice, this list of conditions and the following disclaimer in the
14 * documentation and/or other materials provided with the distribution.
15 * 3. All advertising materials mentioning features or use of this software
16 * must display the following acknowledgement:
17 * This product includes software developed for the
18 * NetBSD Project. See http://www.NetBSD.org/ for
19 * information about NetBSD.
20 * 4. The name of the author may not be used to endorse or promote products
21 * derived from this software without specific prior written permission.
23 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
24 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
25 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
26 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
27 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
28 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
29 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
30 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
31 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
32 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
34 * <<Id: LICENSE,v 1.2 2000/06/14 15:57:33 cgd Exp>>
37 #include <sys/cdefs.h>
38 #if defined(LIBC_SCCS) && !defined(lint)
39 __RCSID("$NetBSD: shquote.c,v 1.8 2006/03/19 02:33:02 christos Exp $");
40 #endif /* LIBC_SCCS and not lint */
43 * Define SHQUOTE_USE_MULTIBYTE if you want shquote() to handle multibyte
44 * characters using mbrtowc().
46 * Please DO NOT rip this #ifdef out of the code. It's also here to help
49 #undef SHQUOTE_USE_MULTIBYTE
51 #include "namespace.h"
54 #ifdef SHQUOTE_USE_MULTIBYTE
61 __weak_alias(shquote
,_shquote
)
67 * Requotes arguments so that they'll be interpreted properly by the
70 * Wraps single quotes around the string, and replaces single quotes
71 * in the string with the sequence:
74 * Returns the number of characters required to hold the resulting quoted
77 * The buffer supplied is filled in and NUL-terminated. If 'bufsize'
78 * indicates that the buffer is too short to hold the output string, the
79 * first (bufsize - 1) bytes of quoted argument are filled in and the
80 * buffer is NUL-terminated.
82 * Changes could be made to optimize the length of strings output by this
85 * * if there are no metacharacters or whitespace in the input,
86 * the output could be the input string.
89 #ifdef SHQUOTE_USE_MULTIBYTE
91 #define XLATE_OUTCH(x) wcrtomb(outch, (x), &mbso)
92 #define XLATE_INCH() \
94 n = mbrtowc(&c, arg, MB_CUR_MAX, &mbsi); \
95 } while (/*LINTED const cond*/0)
99 #define XLATE_OUTCH(x) (outch[0] = (x), 1)
100 #define XLATE_INCH() \
102 n = ((c = *arg) != '\0') ? 1 : 0; \
103 } while (/*LINTED const cond*/0)
109 outchlen = XLATE_OUTCH(x); \
110 if (outchlen == (size_t)-1) \
113 if (bufsize != 0) { \
114 if (bufsize < outchlen || \
115 (bufsize == outchlen && \
116 outch[outchlen - 1] != '\0')) { \
120 memcpy(buf, outch, outchlen); \
122 bufsize -= outchlen; \
125 } while (/*LINTED const cond*/0)
128 shquote(const char *arg
, char *buf
, size_t bufsize
)
130 #ifdef SHQUOTE_USE_MULTIBYTE
131 char outch
[MB_LEN_MAX
];
132 mbstate_t mbsi
, mbso
;
145 #ifdef SHQUOTE_USE_MULTIBYTE
146 memset(&mbsi
, 0, sizeof mbsi
);
147 memset(&mbso
, 0, sizeof mbso
);
166 if (n
<= 0 || c
!= '\'')
180 /* Put multibyte or NUL terminator, but don't count the NUL. */
187 /* A multibyte character encoding or decoding error occurred. */