e00f00916b27de765bddaea0263539a5e62368a2
[prosody.git] / util-src / encodings.c
1 /* Prosody IM
2 -- Copyright (C) 2008-2010 Matthew Wild
3 -- Copyright (C) 2008-2010 Waqas Hussain
4 -- 
5 -- This project is MIT/X11 licensed. Please see the
6 -- COPYING file in the source package for more information.
7 --
8 */
9
10 /*
11 * encodings.c
12 * Lua library for base64, stringprep and idna encodings
13 */
14
15 /* Newer MSVC compilers deprecate strcpy as unsafe, but we use it in a safe way */
16 #define _CRT_SECURE_NO_DEPRECATE
17
18 #include <string.h>
19 #include <stdlib.h>
20 #include "lua.h"
21 #include "lauxlib.h"
22
23 /***************** BASE64 *****************/
24
25 static const char code[]=
26 "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/";
27
28 static void base64_encode(luaL_Buffer *b, unsigned int c1, unsigned int c2, unsigned int c3, int n)
29 {
30         unsigned long tuple=c3+256UL*(c2+256UL*c1);
31         int i;
32         char s[4];
33         for (i=0; i<4; i++) {
34                 s[3-i] = code[tuple % 64];
35                 tuple /= 64;
36         }
37         for (i=n+1; i<4; i++) s[i]='=';
38         luaL_addlstring(b,s,4);
39 }
40
41 static int Lbase64_encode(lua_State *L)         /** encode(s) */
42 {
43         size_t l;
44         const unsigned char *s=(const unsigned char*)luaL_checklstring(L,1,&l);
45         luaL_Buffer b;
46         int n;
47         luaL_buffinit(L,&b);
48         for (n=l/3; n--; s+=3) base64_encode(&b,s[0],s[1],s[2],3);
49         switch (l%3)
50         {
51                 case 1: base64_encode(&b,s[0],0,0,1);           break;
52                 case 2: base64_encode(&b,s[0],s[1],0,2);                break;
53         }
54         luaL_pushresult(&b);
55         return 1;
56 }
57
58 static void base64_decode(luaL_Buffer *b, int c1, int c2, int c3, int c4, int n)
59 {
60         unsigned long tuple=c4+64L*(c3+64L*(c2+64L*c1));
61         char s[3];
62         switch (--n)
63         {
64                 case 3: s[2]=(char) tuple;
65                 case 2: s[1]=(char) (tuple >> 8);
66                 case 1: s[0]=(char) (tuple >> 16);
67         }
68         luaL_addlstring(b,s,n);
69 }
70
71 static int Lbase64_decode(lua_State *L)         /** decode(s) */
72 {
73         size_t l;
74         const char *s=luaL_checklstring(L,1,&l);
75         luaL_Buffer b;
76         int n=0;
77         char t[4];
78         luaL_buffinit(L,&b);
79         for (;;)
80         {
81                 int c=*s++;
82                 switch (c)
83                 {
84                         const char *p;
85                         default:
86                                 p=strchr(code,c); if (p==NULL) return 0;
87                                 t[n++]= (char) (p-code);
88                                 if (n==4)
89                                 {
90                                         base64_decode(&b,t[0],t[1],t[2],t[3],4);
91                                         n=0;
92                                 }
93                                 break;
94                         case '=':
95                                 switch (n)
96                                 {
97                                         case 1: base64_decode(&b,t[0],0,0,0,1);         break;
98                                         case 2: base64_decode(&b,t[0],t[1],0,0,2);      break;
99                                         case 3: base64_decode(&b,t[0],t[1],t[2],0,3);   break;
100                                 }
101                                 n=0;
102                                 break;
103                         case 0:
104                                 luaL_pushresult(&b);
105                                 return 1;
106                         case '\n': case '\r': case '\t': case ' ': case '\f': case '\b':
107                                 break;
108                 }
109         }
110 }
111
112 static const luaL_Reg Reg_base64[] =
113 {
114         { "encode",     Lbase64_encode  },
115         { "decode",     Lbase64_decode  },
116         { NULL,         NULL    }
117 };
118
119 /***************** STRINGPREP *****************/
120 #ifdef USE_STRINGPREP_ICU
121
122 #include <unicode/usprep.h>
123 #include <unicode/ustring.h>
124 #include <unicode/utrace.h>
125
126 static int icu_stringprep_prep(lua_State *L, const UStringPrepProfile *profile)
127 {
128         size_t input_len;
129         int32_t unprepped_len, prepped_len, output_len;
130         const char *input;
131         char output[1024];
132
133         UChar unprepped[1024]; /* Temporary unicode buffer (1024 characters) */
134         UChar prepped[1024];
135         
136         UErrorCode err = U_ZERO_ERROR;
137
138         if(!lua_isstring(L, 1)) {
139                 lua_pushnil(L);
140                 return 1;
141         }
142         input = lua_tolstring(L, 1, &input_len);
143         if (input_len >= 1024) {
144                 lua_pushnil(L);
145                 return 1;
146         }
147         u_strFromUTF8(unprepped, 1024, &unprepped_len, input, input_len, &err);
148         prepped_len = usprep_prepare(profile, unprepped, unprepped_len, prepped, 1024, 0, NULL, &err);
149         if (U_FAILURE(err)) {
150                 lua_pushnil(L);
151                 return 1;
152         } else {
153                 u_strToUTF8(output, 1024, &output_len, prepped, prepped_len, &err);
154                 if(output_len < 1024)
155                         lua_pushlstring(L, output, output_len);
156                 else
157                         lua_pushnil(L);
158                 return 1;
159         }
160 }
161
162 UStringPrepProfile *icu_nameprep;
163 UStringPrepProfile *icu_nodeprep;
164 UStringPrepProfile *icu_resourceprep; 
165 UStringPrepProfile *icu_saslprep;
166
167 /* initialize global ICU stringprep profiles */
168 void init_icu()
169 {
170         UErrorCode err = U_ZERO_ERROR;
171         utrace_setLevel(UTRACE_VERBOSE);
172         icu_nameprep = usprep_openByType(USPREP_RFC3491_NAMEPREP, &err);
173         icu_nodeprep = usprep_openByType(USPREP_RFC3920_NODEPREP, &err);
174         icu_resourceprep = usprep_openByType(USPREP_RFC3920_RESOURCEPREP, &err);
175         icu_saslprep = usprep_openByType(USPREP_RFC4013_SASLPREP, &err);
176         if (U_FAILURE(err)) fprintf(stderr, "[c] util.encodings: error: %s\n", u_errorName((UErrorCode)err));
177 }
178
179 #define MAKE_PREP_FUNC(myFunc, prep) \
180 static int myFunc(lua_State *L) { return icu_stringprep_prep(L, prep); }
181
182 MAKE_PREP_FUNC(Lstringprep_nameprep, icu_nameprep)              /** stringprep.nameprep(s) */
183 MAKE_PREP_FUNC(Lstringprep_nodeprep, icu_nodeprep)              /** stringprep.nodeprep(s) */
184 MAKE_PREP_FUNC(Lstringprep_resourceprep, icu_resourceprep)              /** stringprep.resourceprep(s) */
185 MAKE_PREP_FUNC(Lstringprep_saslprep, icu_saslprep)              /** stringprep.saslprep(s) */
186
187 static const luaL_Reg Reg_stringprep[] =
188 {
189         { "nameprep",   Lstringprep_nameprep    },
190         { "nodeprep",   Lstringprep_nodeprep    },
191         { "resourceprep",       Lstringprep_resourceprep        },
192         { "saslprep",   Lstringprep_saslprep    },
193         { NULL,         NULL    }
194 };
195 #else /* USE_STRINGPREP_ICU */
196
197 /****************** libidn ********************/
198
199 #include <stringprep.h>
200
201 static int stringprep_prep(lua_State *L, const Stringprep_profile *profile)
202 {
203         size_t len;
204         const char *s;
205         char string[1024];
206         int ret;
207         if(!lua_isstring(L, 1)) {
208                 lua_pushnil(L);
209                 return 1;
210         }
211         s = lua_tolstring(L, 1, &len);
212         if (len >= 1024) {
213                 lua_pushnil(L);
214                 return 1; /* TODO return error message */
215         }
216         strcpy(string, s);
217         ret = stringprep(string, 1024, (Stringprep_profile_flags)0, profile);
218         if (ret == STRINGPREP_OK) {
219                 lua_pushstring(L, string);
220                 return 1;
221         } else {
222                 lua_pushnil(L);
223                 return 1; /* TODO return error message */
224         }
225 }
226
227 #define MAKE_PREP_FUNC(myFunc, prep) \
228 static int myFunc(lua_State *L) { return stringprep_prep(L, prep); }
229
230 MAKE_PREP_FUNC(Lstringprep_nameprep, stringprep_nameprep)               /** stringprep.nameprep(s) */
231 MAKE_PREP_FUNC(Lstringprep_nodeprep, stringprep_xmpp_nodeprep)          /** stringprep.nodeprep(s) */
232 MAKE_PREP_FUNC(Lstringprep_resourceprep, stringprep_xmpp_resourceprep)          /** stringprep.resourceprep(s) */
233 MAKE_PREP_FUNC(Lstringprep_saslprep, stringprep_saslprep)               /** stringprep.saslprep(s) */
234
235 static const luaL_Reg Reg_stringprep[] =
236 {
237         { "nameprep",   Lstringprep_nameprep    },
238         { "nodeprep",   Lstringprep_nodeprep    },
239         { "resourceprep",       Lstringprep_resourceprep        },
240         { "saslprep",   Lstringprep_saslprep    },
241         { NULL,         NULL    }
242 };
243 #endif
244
245 /***************** IDNA *****************/
246 #ifdef USE_STRINGPREP_ICU
247 #include <unicode/ustdio.h>
248 #include <unicode/uidna.h>
249 /* IDNA2003 or IDNA2008 ? ? ? */
250 static int Lidna_to_ascii(lua_State *L)         /** idna.to_ascii(s) */
251 {
252         size_t len;
253         int32_t ulen, dest_len, output_len;
254         const char *s = luaL_checklstring(L, 1, &len);
255         UChar ustr[1024];
256         UErrorCode err = U_ZERO_ERROR;
257         UChar dest[1024];
258         char output[1024];
259
260         u_strFromUTF8(ustr, 1024, &ulen, s, len, &err);
261         dest_len = uidna_IDNToASCII(ustr, ulen, dest, 1024, UIDNA_USE_STD3_RULES, NULL, &err);
262         if (U_FAILURE(err)) {
263                 lua_pushnil(L);
264                 return 1;
265         } else {
266                 u_strToUTF8(output, 1024, &output_len, dest, dest_len, &err);
267                 if(output_len < 1024)
268                         lua_pushlstring(L, output, output_len);
269                 else
270                         lua_pushnil(L);
271                 return 1;
272         }
273 }
274
275 static int Lidna_to_unicode(lua_State *L)               /** idna.to_unicode(s) */
276 {
277         size_t len;
278         int32_t ulen, dest_len, output_len;
279         const char *s = luaL_checklstring(L, 1, &len);
280         UChar ustr[1024];
281         UErrorCode err = U_ZERO_ERROR;
282         UChar dest[1024];
283         char output[1024];
284
285         u_strFromUTF8(ustr, 1024, &ulen, s, len, &err);
286         dest_len = uidna_IDNToUnicode(ustr, ulen, dest, 1024, UIDNA_USE_STD3_RULES, NULL, &err);
287         if (U_FAILURE(err)) {
288                 lua_pushnil(L);
289                 return 1;
290         } else {
291                 u_strToUTF8(output, 1024, &output_len, dest, dest_len, &err);
292                 if(output_len < 1024)
293                         lua_pushlstring(L, output, output_len);
294                 else
295                         lua_pushnil(L);
296                 return 1;
297         }
298 }
299
300 #else /* USE_STRINGPREP_ICU */
301 /****************** libidn ********************/
302
303 #include <idna.h>
304 #include <idn-free.h>
305
306 static int Lidna_to_ascii(lua_State *L)         /** idna.to_ascii(s) */
307 {
308         size_t len;
309         const char *s = luaL_checklstring(L, 1, &len);
310         char* output = NULL;
311         int ret = idna_to_ascii_8z(s, &output, IDNA_USE_STD3_ASCII_RULES);
312         if (ret == IDNA_SUCCESS) {
313                 lua_pushstring(L, output);
314                 idn_free(output);
315                 return 1;
316         } else {
317                 lua_pushnil(L);
318                 idn_free(output);
319                 return 1; /* TODO return error message */
320         }
321 }
322
323 static int Lidna_to_unicode(lua_State *L)               /** idna.to_unicode(s) */
324 {
325         size_t len;
326         const char *s = luaL_checklstring(L, 1, &len);
327         char* output = NULL;
328         int ret = idna_to_unicode_8z8z(s, &output, 0);
329         if (ret == IDNA_SUCCESS) {
330                 lua_pushstring(L, output);
331                 idn_free(output);
332                 return 1;
333         } else {
334                 lua_pushnil(L);
335                 idn_free(output);
336                 return 1; /* TODO return error message */
337         }
338 }
339 #endif
340
341 static const luaL_Reg Reg_idna[] =
342 {
343         { "to_ascii",   Lidna_to_ascii  },
344         { "to_unicode", Lidna_to_unicode        },
345         { NULL,         NULL    }
346 };
347
348 /***************** end *****************/
349
350 static const luaL_Reg Reg[] =
351 {
352         { NULL,         NULL    }
353 };
354
355 LUALIB_API int luaopen_util_encodings(lua_State *L)
356 {
357 #ifdef USE_STRINGPREP_ICU
358         init_icu();
359 #endif
360         luaL_register(L, "encodings", Reg);
361
362         lua_pushliteral(L, "base64");
363         lua_newtable(L);
364         luaL_register(L, NULL, Reg_base64);
365         lua_settable(L,-3);
366
367         lua_pushliteral(L, "stringprep");
368         lua_newtable(L);
369         luaL_register(L, NULL, Reg_stringprep);
370         lua_settable(L,-3);
371
372         lua_pushliteral(L, "idna");
373         lua_newtable(L);
374         luaL_register(L, NULL, Reg_idna);
375         lua_settable(L,-3);
376
377         lua_pushliteral(L, "version");                  /** version */
378         lua_pushliteral(L, "-3.14");
379         lua_settable(L,-3);
380         return 1;
381 }