eece1986f90055a3d82b296692fb3f6d72053bc5
[samba.git] / source3 / modules / vfs_cap.c
1 /*
2  * CAP VFS module for Samba 3.x Version 0.3
3  *
4  * Copyright (C) Tim Potter, 1999-2000
5  * Copyright (C) Alexander Bokovoy, 2002-2003
6  * Copyright (C) Stefan (metze) Metzmacher, 2003
7  * Copyright (C) TAKAHASHI Motonobu (monyo), 2003
8  * Copyright (C) Jeremy Allison, 2007
9  *
10  * This program is free software; you can redistribute it and/or modify
11  * it under the terms of the GNU General Public License as published by
12  * the Free Software Foundation; either version 3 of the License, or
13  * (at your option) any later version.
14  *
15  * This program is distributed in the hope that it will be useful,
16  * but WITHOUT ANY WARRANTY; without even the implied warranty of
17  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18  * GNU General Public License for more details.
19  *
20  * You should have received a copy of the GNU General Public License
21  * along with this program; if not, see <http://www.gnu.org/licenses/>.
22  */
23
24
25 #include "includes.h"
26 #include "smbd/smbd.h"
27
28 /* cap functions */
29 static char *capencode(TALLOC_CTX *ctx, const char *from);
30 static char *capdecode(TALLOC_CTX *ctx, const char *from);
31
32 static uint64_t cap_disk_free(vfs_handle_struct *handle, const char *path,
33                               uint64_t *bsize, uint64_t *dfree, uint64_t *dsize)
34 {
35         char *cappath = capencode(talloc_tos(), path);
36
37         if (!cappath) {
38                 errno = ENOMEM;
39                 return (uint64_t)-1;
40         }
41         return SMB_VFS_NEXT_DISK_FREE(handle, cappath, bsize, dfree, dsize);
42 }
43
44 static int cap_get_quota(vfs_handle_struct *handle, const char *path,
45                          enum SMB_QUOTA_TYPE qtype, unid_t id,
46                          SMB_DISK_QUOTA *dq)
47 {
48         char *cappath = capencode(talloc_tos(), path);
49
50         if (!cappath) {
51                 errno = ENOMEM;
52                 return -1;
53         }
54         return SMB_VFS_NEXT_GET_QUOTA(handle, cappath, qtype, id, dq);
55 }
56
57 static DIR *cap_opendir(vfs_handle_struct *handle,
58                         const struct smb_filename *smb_fname,
59                         const char *mask,
60                         uint32_t attr)
61 {
62         char *capname = capencode(talloc_tos(), smb_fname->base_name);
63         struct smb_filename *cap_smb_fname = NULL;
64
65         if (!capname) {
66                 errno = ENOMEM;
67                 return NULL;
68         }
69         cap_smb_fname = synthetic_smb_fname(talloc_tos(),
70                                         capname,
71                                         NULL,
72                                         NULL,
73                                         smb_fname->flags);
74         if (cap_smb_fname == NULL) {
75                 TALLOC_FREE(capname);
76                 errno = ENOMEM;
77                 return NULL;
78         }
79         return SMB_VFS_NEXT_OPENDIR(handle, cap_smb_fname, mask, attr);
80 }
81
82 static struct dirent *cap_readdir(vfs_handle_struct *handle,
83                                       DIR *dirp,
84                                       SMB_STRUCT_STAT *sbuf)
85 {
86         struct dirent *result;
87         struct dirent *newdirent;
88         char *newname;
89         size_t newnamelen;
90         DEBUG(3,("cap: cap_readdir\n"));
91
92         result = SMB_VFS_NEXT_READDIR(handle, dirp, NULL);
93         if (!result) {
94                 return NULL;
95         }
96
97         newname = capdecode(talloc_tos(), result->d_name);
98         if (!newname) {
99                 return NULL;
100         }
101         DEBUG(3,("cap: cap_readdir: %s\n", newname));
102         newnamelen = strlen(newname)+1;
103         newdirent = talloc_size(
104                 talloc_tos(), sizeof(struct dirent) + newnamelen);
105         if (!newdirent) {
106                 return NULL;
107         }
108         talloc_set_name_const(newdirent, "struct dirent");
109         memcpy(newdirent, result, sizeof(struct dirent));
110         memcpy(&newdirent->d_name, newname, newnamelen);
111         return newdirent;
112 }
113
114 static int cap_mkdir(vfs_handle_struct *handle,
115                 const struct smb_filename *smb_fname,
116                 mode_t mode)
117 {
118         char *cappath = capencode(talloc_tos(), smb_fname->base_name);
119         struct smb_filename *cap_smb_fname = NULL;
120
121         if (!cappath) {
122                 errno = ENOMEM;
123                 return -1;
124         }
125
126         cap_smb_fname = synthetic_smb_fname(talloc_tos(),
127                                         cappath,
128                                         NULL,
129                                         NULL,
130                                         smb_fname->flags);
131         if (cap_smb_fname == NULL) {
132                 TALLOC_FREE(cappath);
133                 errno = ENOMEM;
134                 return -1;
135         }
136
137         return SMB_VFS_NEXT_MKDIR(handle, cap_smb_fname, mode);
138 }
139
140 static int cap_rmdir(vfs_handle_struct *handle,
141                 const struct smb_filename *smb_fname)
142 {
143         char *cappath = capencode(talloc_tos(), smb_fname->base_name);
144         struct smb_filename *cap_smb_fname = NULL;
145
146         if (!cappath) {
147                 errno = ENOMEM;
148                 return -1;
149         }
150
151         cap_smb_fname = synthetic_smb_fname(talloc_tos(),
152                                         cappath,
153                                         NULL,
154                                         NULL,
155                                         smb_fname->flags);
156         if (cap_smb_fname == NULL) {
157                 TALLOC_FREE(cappath);
158                 errno = ENOMEM;
159                 return -1;
160         }
161
162         return SMB_VFS_NEXT_RMDIR(handle, cap_smb_fname);
163 }
164
165 static int cap_open(vfs_handle_struct *handle, struct smb_filename *smb_fname,
166                     files_struct *fsp, int flags, mode_t mode)
167 {
168         char *cappath;
169         char *tmp_base_name = NULL;
170         int ret;
171
172         cappath = capencode(talloc_tos(), smb_fname->base_name);
173
174         if (!cappath) {
175                 errno = ENOMEM;
176                 return -1;
177         }
178
179         tmp_base_name = smb_fname->base_name;
180         smb_fname->base_name = cappath;
181
182         DEBUG(3,("cap: cap_open for %s\n", smb_fname_str_dbg(smb_fname)));
183         ret = SMB_VFS_NEXT_OPEN(handle, smb_fname, fsp, flags, mode);
184
185         smb_fname->base_name = tmp_base_name;
186         TALLOC_FREE(cappath);
187
188         return ret;
189 }
190
191 static int cap_rename(vfs_handle_struct *handle,
192                       const struct smb_filename *smb_fname_src,
193                       const struct smb_filename *smb_fname_dst)
194 {
195         char *capold = NULL;
196         char *capnew = NULL;
197         struct smb_filename *smb_fname_src_tmp = NULL;
198         struct smb_filename *smb_fname_dst_tmp = NULL;
199         int ret = -1;
200
201         capold = capencode(talloc_tos(), smb_fname_src->base_name);
202         capnew = capencode(talloc_tos(), smb_fname_dst->base_name);
203         if (!capold || !capnew) {
204                 errno = ENOMEM;
205                 goto out;
206         }
207
208         /* Setup temporary smb_filename structs. */
209         smb_fname_src_tmp = cp_smb_filename(talloc_tos(), smb_fname_src);
210         if (smb_fname_src_tmp == NULL) {
211                 errno = ENOMEM;
212                 goto out;
213         }
214         smb_fname_dst_tmp = cp_smb_filename(talloc_tos(), smb_fname_dst);
215         if (smb_fname_dst_tmp == NULL) {
216                 errno = ENOMEM;
217                 goto out;
218         }
219
220         smb_fname_src_tmp->base_name = capold;
221         smb_fname_dst_tmp->base_name = capnew;
222
223         ret = SMB_VFS_NEXT_RENAME(handle, smb_fname_src_tmp,
224                                   smb_fname_dst_tmp);
225  out:
226         TALLOC_FREE(capold);
227         TALLOC_FREE(capnew);
228         TALLOC_FREE(smb_fname_src_tmp);
229         TALLOC_FREE(smb_fname_dst_tmp);
230
231         return ret;
232 }
233
234 static int cap_stat(vfs_handle_struct *handle, struct smb_filename *smb_fname)
235 {
236         char *cappath;
237         char *tmp_base_name = NULL;
238         int ret;
239
240         cappath = capencode(talloc_tos(), smb_fname->base_name);
241
242         if (!cappath) {
243                 errno = ENOMEM;
244                 return -1;
245         }
246
247         tmp_base_name = smb_fname->base_name;
248         smb_fname->base_name = cappath;
249
250         ret = SMB_VFS_NEXT_STAT(handle, smb_fname);
251
252         smb_fname->base_name = tmp_base_name;
253         TALLOC_FREE(cappath);
254
255         return ret;
256 }
257
258 static int cap_lstat(vfs_handle_struct *handle, struct smb_filename *smb_fname)
259 {
260         char *cappath;
261         char *tmp_base_name = NULL;
262         int ret;
263
264         cappath = capencode(talloc_tos(), smb_fname->base_name);
265
266         if (!cappath) {
267                 errno = ENOMEM;
268                 return -1;
269         }
270
271         tmp_base_name = smb_fname->base_name;
272         smb_fname->base_name = cappath;
273
274         ret = SMB_VFS_NEXT_LSTAT(handle, smb_fname);
275
276         smb_fname->base_name = tmp_base_name;
277         TALLOC_FREE(cappath);
278
279         return ret;
280 }
281
282 static int cap_unlink(vfs_handle_struct *handle,
283                       const struct smb_filename *smb_fname)
284 {
285         struct smb_filename *smb_fname_tmp = NULL;
286         char *cappath = NULL;
287         int ret;
288
289         cappath = capencode(talloc_tos(), smb_fname->base_name);
290         if (!cappath) {
291                 errno = ENOMEM;
292                 return -1;
293         }
294
295         /* Setup temporary smb_filename structs. */
296         smb_fname_tmp = cp_smb_filename(talloc_tos(), smb_fname);
297         if (smb_fname_tmp == NULL) {
298                 errno = ENOMEM;
299                 return -1;
300         }
301
302         smb_fname_tmp->base_name = cappath;
303
304         ret = SMB_VFS_NEXT_UNLINK(handle, smb_fname_tmp);
305
306         TALLOC_FREE(smb_fname_tmp);
307         return ret;
308 }
309
310 static int cap_chmod(vfs_handle_struct *handle,
311                         const struct smb_filename *smb_fname,
312                         mode_t mode)
313 {
314         struct smb_filename *cap_smb_fname = NULL;
315         char *cappath = capencode(talloc_tos(), smb_fname->base_name);
316         int ret;
317         int saved_errno;
318
319         if (!cappath) {
320                 errno = ENOMEM;
321                 return -1;
322         }
323
324         cap_smb_fname = synthetic_smb_fname(talloc_tos(),
325                                         cappath,
326                                         NULL,
327                                         NULL,
328                                         smb_fname->flags);
329         if (cap_smb_fname == NULL) {
330                 TALLOC_FREE(cappath);
331                 errno = ENOMEM;
332                 return -1;
333         }
334
335         ret = SMB_VFS_NEXT_CHMOD(handle, cap_smb_fname, mode);
336         saved_errno = errno;
337         TALLOC_FREE(cappath);
338         TALLOC_FREE(cap_smb_fname);
339         errno = saved_errno;
340         return ret;
341 }
342
343 static int cap_chown(vfs_handle_struct *handle,
344                         const struct smb_filename *smb_fname,
345                         uid_t uid,
346                         gid_t gid)
347 {
348         struct smb_filename *cap_smb_fname = NULL;
349         char *cappath = capencode(talloc_tos(), smb_fname->base_name);
350         int ret;
351         int saved_errno;
352
353         if (!cappath) {
354                 errno = ENOMEM;
355                 return -1;
356         }
357
358         cap_smb_fname = synthetic_smb_fname(talloc_tos(),
359                                         cappath,
360                                         NULL,
361                                         NULL,
362                                         smb_fname->flags);
363         if (cap_smb_fname == NULL) {
364                 TALLOC_FREE(cappath);
365                 errno = ENOMEM;
366                 return -1;
367         }
368
369         ret = SMB_VFS_NEXT_CHOWN(handle, cap_smb_fname, uid, gid);
370         saved_errno = errno;
371         TALLOC_FREE(cappath);
372         TALLOC_FREE(cap_smb_fname);
373         errno = saved_errno;
374         return ret;
375 }
376
377 static int cap_lchown(vfs_handle_struct *handle,
378                         const struct smb_filename *smb_fname,
379                         uid_t uid,
380                         gid_t gid)
381 {
382         struct smb_filename *cap_smb_fname = NULL;
383         char *cappath = capencode(talloc_tos(), smb_fname->base_name);
384         int ret;
385         int saved_errno;
386
387         if (!cappath) {
388                 errno = ENOMEM;
389                 return -1;
390         }
391
392         cap_smb_fname = synthetic_smb_fname(talloc_tos(),
393                                         cappath,
394                                         NULL,
395                                         NULL,
396                                         smb_fname->flags);
397         if (cap_smb_fname == NULL) {
398                 TALLOC_FREE(cappath);
399                 errno = ENOMEM;
400                 return -1;
401         }
402
403         ret = SMB_VFS_NEXT_LCHOWN(handle, cap_smb_fname, uid, gid);
404         saved_errno = errno;
405         TALLOC_FREE(cappath);
406         TALLOC_FREE(cap_smb_fname);
407         errno = saved_errno;
408         return ret;
409 }
410
411 static int cap_chdir(vfs_handle_struct *handle, const char *path)
412 {
413         char *cappath = capencode(talloc_tos(), path);
414
415         if (!cappath) {
416                 errno = ENOMEM;
417                 return -1;
418         }
419         DEBUG(3,("cap: cap_chdir for %s\n", path));
420         return SMB_VFS_NEXT_CHDIR(handle, cappath);
421 }
422
423 static int cap_ntimes(vfs_handle_struct *handle,
424                       const struct smb_filename *smb_fname,
425                       struct smb_file_time *ft)
426 {
427         struct smb_filename *smb_fname_tmp = NULL;
428         char *cappath = NULL;
429         int ret;
430
431         cappath = capencode(talloc_tos(), smb_fname->base_name);
432
433         if (!cappath) {
434                 errno = ENOMEM;
435                 return -1;
436         }
437
438         /* Setup temporary smb_filename structs. */
439         smb_fname_tmp = cp_smb_filename(talloc_tos(), smb_fname);
440         if (smb_fname_tmp == NULL) {
441                 errno = ENOMEM;
442                 return -1;
443         }
444
445         smb_fname_tmp->base_name = cappath;
446
447         ret = SMB_VFS_NEXT_NTIMES(handle, smb_fname_tmp, ft);
448
449         TALLOC_FREE(smb_fname_tmp);
450         return ret;
451 }
452
453
454 static int cap_symlink(vfs_handle_struct *handle, const char *oldpath,
455                        const char *newpath)
456 {
457         char *capold = capencode(talloc_tos(), oldpath);
458         char *capnew = capencode(talloc_tos(), newpath);
459
460         if (!capold || !capnew) {
461                 errno = ENOMEM;
462                 return -1;
463         }
464         return SMB_VFS_NEXT_SYMLINK(handle, capold, capnew);
465 }
466
467 static int cap_readlink(vfs_handle_struct *handle, const char *path,
468                         char *buf, size_t bufsiz)
469 {
470         char *cappath = capencode(talloc_tos(), path);
471
472         if (!cappath) {
473                 errno = ENOMEM;
474                 return -1;
475         }
476         return SMB_VFS_NEXT_READLINK(handle, cappath, buf, bufsiz);
477 }
478
479 static int cap_link(vfs_handle_struct *handle, const char *oldpath, const char *newpath)
480 {
481         char *capold = capencode(talloc_tos(), oldpath);
482         char *capnew = capencode(talloc_tos(), newpath);
483
484         if (!capold || !capnew) {
485                 errno = ENOMEM;
486                 return -1;
487         }
488         return SMB_VFS_NEXT_LINK(handle, capold, capnew);
489 }
490
491 static int cap_mknod(vfs_handle_struct *handle, const char *path, mode_t mode, SMB_DEV_T dev)
492 {
493         char *cappath = capencode(talloc_tos(), path);
494
495         if (!cappath) {
496                 errno = ENOMEM;
497                 return -1;
498         }
499         return SMB_VFS_NEXT_MKNOD(handle, cappath, mode, dev);
500 }
501
502 static char *cap_realpath(vfs_handle_struct *handle, const char *path)
503 {
504         /* monyo need capencode'ed and capdecode'ed? */
505         char *cappath = capencode(talloc_tos(), path);
506
507         if (!cappath) {
508                 errno = ENOMEM;
509                 return NULL;
510         }
511         return SMB_VFS_NEXT_REALPATH(handle, cappath);
512 }
513
514 static int cap_chmod_acl(vfs_handle_struct *handle,
515                         const struct smb_filename *smb_fname,
516                         mode_t mode)
517 {
518         struct smb_filename *cap_smb_fname = NULL;
519         char *cappath = capencode(talloc_tos(), smb_fname->base_name);
520         int ret;
521         int saved_errno;
522
523         /* If the underlying VFS doesn't have ACL support... */
524         if (!cappath) {
525                 errno = ENOMEM;
526                 return -1;
527         }
528         cap_smb_fname = synthetic_smb_fname(talloc_tos(),
529                                         cappath,
530                                         NULL,
531                                         NULL,
532                                         smb_fname->flags);
533         if (cap_smb_fname == NULL) {
534                 TALLOC_FREE(cappath);
535                 errno = ENOMEM;
536                 return -1;
537         }
538
539         ret = SMB_VFS_NEXT_CHMOD_ACL(handle, cap_smb_fname, mode);
540         saved_errno = errno;
541         TALLOC_FREE(cappath);
542         TALLOC_FREE(cap_smb_fname);
543         errno = saved_errno;
544         return ret;
545 }
546
547 static SMB_ACL_T cap_sys_acl_get_file(vfs_handle_struct *handle,
548                                       const char *path, SMB_ACL_TYPE_T type,
549                                       TALLOC_CTX *mem_ctx)
550 {
551         char *cappath = capencode(talloc_tos(), path);
552
553         if (!cappath) {
554                 errno = ENOMEM;
555                 return (SMB_ACL_T)NULL;
556         }
557         return SMB_VFS_NEXT_SYS_ACL_GET_FILE(handle, cappath, type, mem_ctx);
558 }
559
560 static int cap_sys_acl_set_file(vfs_handle_struct *handle, const char *path, SMB_ACL_TYPE_T acltype, SMB_ACL_T theacl)
561 {
562         char *cappath = capencode(talloc_tos(), path);
563
564         if (!cappath) {
565                 errno = ENOMEM;
566                 return -1;
567         }
568         return SMB_VFS_NEXT_SYS_ACL_SET_FILE(handle, cappath, acltype, theacl);
569 }
570
571 static int cap_sys_acl_delete_def_file(vfs_handle_struct *handle, const char *path)
572 {
573         char *cappath = capencode(talloc_tos(), path);
574
575         if (!cappath) {
576                 errno = ENOMEM;
577                 return -1;
578         }
579         return SMB_VFS_NEXT_SYS_ACL_DELETE_DEF_FILE(handle, cappath);
580 }
581
582 static ssize_t cap_getxattr(vfs_handle_struct *handle, const char *path, const char *name, void *value, size_t size)
583 {
584         char *cappath = capencode(talloc_tos(), path);
585         char *capname = capencode(talloc_tos(), name);
586
587         if (!cappath || !capname) {
588                 errno = ENOMEM;
589                 return -1;
590         }
591         return SMB_VFS_NEXT_GETXATTR(handle, cappath, capname, value, size);
592 }
593
594 static ssize_t cap_fgetxattr(vfs_handle_struct *handle, struct files_struct *fsp, const char *path, void *value, size_t size)
595 {
596         char *cappath = capencode(talloc_tos(), path);
597
598         if (!cappath) {
599                 errno = ENOMEM;
600                 return -1;
601         }
602         return SMB_VFS_NEXT_FGETXATTR(handle, fsp, cappath, value, size);
603 }
604
605 static ssize_t cap_listxattr(vfs_handle_struct *handle, const char *path, char *list, size_t size)
606 {
607         char *cappath = capencode(talloc_tos(), path);
608
609         if (!cappath) {
610                 errno = ENOMEM;
611                 return -1;
612         }
613         return SMB_VFS_NEXT_LISTXATTR(handle, cappath, list, size);
614 }
615
616 static int cap_removexattr(vfs_handle_struct *handle, const char *path, const char *name)
617 {
618         char *cappath = capencode(talloc_tos(), path);
619         char *capname = capencode(talloc_tos(), name);
620
621         if (!cappath || !capname) {
622                 errno = ENOMEM;
623                 return -1;
624         }
625         return SMB_VFS_NEXT_REMOVEXATTR(handle, cappath, capname);
626 }
627
628 static int cap_fremovexattr(vfs_handle_struct *handle, struct files_struct *fsp, const char *path)
629 {
630         char *cappath = capencode(talloc_tos(), path);
631
632         if (!cappath) {
633                 errno = ENOMEM;
634                 return -1;
635         }
636         return SMB_VFS_NEXT_FREMOVEXATTR(handle, fsp, cappath);
637 }
638
639 static int cap_setxattr(vfs_handle_struct *handle, const char *path, const char *name, const void *value, size_t size, int flags)
640 {
641         char *cappath = capencode(talloc_tos(), path);
642         char *capname = capencode(talloc_tos(), name);
643
644         if (!cappath || !capname) {
645                 errno = ENOMEM;
646                 return -1;
647         }
648         return SMB_VFS_NEXT_SETXATTR(handle, cappath, capname, value, size, flags);
649 }
650
651 static int cap_fsetxattr(vfs_handle_struct *handle, struct files_struct *fsp, const char *path, const void *value, size_t size, int flags)
652 {
653         char *cappath = capencode(talloc_tos(), path);
654
655         if (!cappath) {
656                 errno = ENOMEM;
657                 return -1;
658         }
659         return SMB_VFS_NEXT_FSETXATTR(handle, fsp, cappath, value, size, flags);
660 }
661
662 static struct vfs_fn_pointers vfs_cap_fns = {
663         .disk_free_fn = cap_disk_free,
664         .get_quota_fn = cap_get_quota,
665         .opendir_fn = cap_opendir,
666         .readdir_fn = cap_readdir,
667         .mkdir_fn = cap_mkdir,
668         .rmdir_fn = cap_rmdir,
669         .open_fn = cap_open,
670         .rename_fn = cap_rename,
671         .stat_fn = cap_stat,
672         .lstat_fn = cap_lstat,
673         .unlink_fn = cap_unlink,
674         .chmod_fn = cap_chmod,
675         .chown_fn = cap_chown,
676         .lchown_fn = cap_lchown,
677         .chdir_fn = cap_chdir,
678         .ntimes_fn = cap_ntimes,
679         .symlink_fn = cap_symlink,
680         .readlink_fn = cap_readlink,
681         .link_fn = cap_link,
682         .mknod_fn = cap_mknod,
683         .realpath_fn = cap_realpath,
684         .chmod_acl_fn = cap_chmod_acl,
685         .sys_acl_get_file_fn = cap_sys_acl_get_file,
686         .sys_acl_set_file_fn = cap_sys_acl_set_file,
687         .sys_acl_delete_def_file_fn = cap_sys_acl_delete_def_file,
688         .getxattr_fn = cap_getxattr,
689         .fgetxattr_fn = cap_fgetxattr,
690         .listxattr_fn = cap_listxattr,
691         .removexattr_fn = cap_removexattr,
692         .fremovexattr_fn = cap_fremovexattr,
693         .setxattr_fn = cap_setxattr,
694         .fsetxattr_fn = cap_fsetxattr
695 };
696
697 NTSTATUS vfs_cap_init(void);
698 NTSTATUS vfs_cap_init(void)
699 {
700         return smb_register_vfs(SMB_VFS_INTERFACE_VERSION, "cap",
701                                 &vfs_cap_fns);
702 }
703
704 /* For CAP functions */
705 #define hex_tag ':'
706 #define hex2bin(c)              hex2bin_table[(unsigned char)(c)]
707 #define bin2hex(c)              bin2hex_table[(unsigned char)(c)]
708 #define is_hex(s)               ((s)[0] == hex_tag)
709
710 static unsigned char hex2bin_table[256] = {
711 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, /* 0x00 */
712 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, /* 0x10 */
713 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, /* 0x20 */
714 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 0, 0, 0, 0, 0, 0, /* 0x30 */
715 0000, 0x0a, 0x0b, 0x0c, 0x0d, 0x0e, 0x0f, 0000, /* 0x40 */
716 0000, 0000, 0000, 0000, 0000, 0000, 0000, 0000,
717 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, /* 0x50 */
718 0000, 0x0a, 0x0b, 0x0c, 0x0d, 0x0e, 0x0f, 0000, /* 0x60 */
719 0000, 0000, 0000, 0000, 0000, 0000, 0000, 0000,
720 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, /* 0x70 */
721 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, /* 0x80 */
722 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, /* 0x90 */
723 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, /* 0xa0 */
724 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, /* 0xb0 */
725 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, /* 0xc0 */
726 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, /* 0xd0 */
727 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, /* 0xe0 */
728 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0  /* 0xf0 */
729 };
730 static unsigned char bin2hex_table[256] = "0123456789abcdef";
731
732 /*******************************************************************
733   original code -> ":xx"  - CAP format
734 ********************************************************************/
735
736 static char *capencode(TALLOC_CTX *ctx, const char *from)
737 {
738         char *out = NULL;
739         const char *p1;
740         char *to = NULL;
741         size_t len = 0;
742
743         for (p1 = from; *p1; p1++) {
744                 if ((unsigned char)*p1 >= 0x80) {
745                         len += 3;
746                 } else {
747                         len++;
748                 }
749         }
750         len++;
751
752         to = talloc_array(ctx, char, len);
753         if (!to) {
754                 return NULL;
755         }
756
757         for (out = to; *from;) {
758                 /* buffer husoku error */
759                 if ((unsigned char)*from >= 0x80) {
760                         *out++ = hex_tag;
761                         *out++ = bin2hex (((*from)>>4)&0x0f);
762                         *out++ = bin2hex ((*from)&0x0f);
763                         from++;
764                 } else {
765                         *out++ = *from++;
766                 }
767         }
768         *out = '\0';
769         return to;
770 }
771
772 /*******************************************************************
773   CAP -> original code
774 ********************************************************************/
775 /* ":xx" -> a byte */
776
777 static char *capdecode(TALLOC_CTX *ctx, const char *from)
778 {
779         const char *p1;
780         char *out = NULL;
781         char *to = NULL;
782         size_t len = 0;
783
784         for (p1 = from; *p1; len++) {
785                 if (is_hex(p1)) {
786                         p1 += 3;
787                 } else {
788                         p1++;
789                 }
790         }
791         len++;
792
793         to = talloc_array(ctx, char, len);
794         if (!to) {
795                 return NULL;
796         }
797
798         for (out = to; *from;) {
799                 if (is_hex(from)) {
800                         *out++ = (hex2bin(from[1])<<4) | (hex2bin(from[2]));
801                         from += 3;
802                 } else {
803                         *out++ = *from++;
804                 }
805         }
806         *out = '\0';
807         return to;
808 }