ncp_nls.h revision 206361
1/*-
2 * Copyright (c) 1999 Boris Popov
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 * $FreeBSD: head/sys/netncp/ncp_nls.h 206361 2010-04-07 16:50:38Z joel $
27 */
28#ifndef _NETNCP_NCP_NLS_H_
29#define _NETNCP_NCP_NLS_H_
30
31/* options for handle path & caseopt in mount struct */
32#define NWHP_HDB	0x01	/* have dir base */
33#define	NWHP_UPPER	0x02	/* local names has upper case */
34#define	NWHP_LOWER	0x04	/* --"-- lower case */
35#define	NWHP_DOS	0x08	/* using dos name space */
36#define	NWHP_NLS	0x10	/* do name translation via tables, any nmspc */
37#define	NWHP_NOSTRICT	0x20	/* pretend to be a case insensitive */
38
39struct ncp_nlstables {
40	u_char	*to_lower;	/* local charset to lower case */
41	u_char	*to_upper;	/* local charset to upper case */
42	u_char	*n2u;		/* NetWare to Unix */
43	u_char	*u2n;
44	int	opt;		/* may depend on context */
45};
46
47#ifndef _KERNEL
48/*
49 * NLS, supported character conversion schemes.
50 * NCP_NLS_UNIXCHARSET_NETWARECHARSET
51 */
52#define	NCP_NLS_AS_IS		1
53#define	NCP_NLS_AS_IS_NAME	"asis"
54#define	NCP_NLS_KOI_866		2
55#define	NCP_NLS_SE		3
56#define	NCP_NLS_KOI_866_NAME	"koi2cp866"
57#define	NCP_NLS_SE_NAME		"se"
58
59extern struct ncp_nlstables ncp_nls;	/* active nls */
60
61__BEGIN_DECLS
62
63int   ncp_nls_setrecode(int scheme);
64int   ncp_nls_setrecodebyname(char *name);
65int   ncp_nls_setlocale(char *name);
66char* ncp_nls_str_n2u(char *dst, const char *src);
67char* ncp_nls_str_u2n(char *dst, const char *src);
68char* ncp_nls_mem_n2u(char *dst, const char *src, int size);
69char* ncp_nls_mem_u2n(char *dst, const char *src, int size);
70
71__END_DECLS
72
73#else /* !_KERNEL */
74
75
76extern struct ncp_nlstables ncp_defnls;
77
78void ncp_str_upper(char *name);
79void ncp_str_lower(char *name);
80void ncp_pathcopy(const char *src, char *dst, int len, struct ncp_nlstables *nt);
81int  ncp_pathcheck(char *s, int len, struct ncp_nlstables *nt, int strict);
82void ncp_path2unix(char *src, char *dst, int len, struct ncp_nlstables *nt);
83
84#endif /* !_KERNEL */
85
86#endif /* _NCP_NCP_NLS_H_ */
87