s3-vfs: Remove unused lsetxattr call from VFS modules, system.c and configure
[kai/samba-autobuild/.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         bool small_query, uint64_t *bsize,
34         uint64_t *dfree, uint64_t *dsize)
35 {
36         char *cappath = capencode(talloc_tos(), path);
37
38         if (!cappath) {
39                 errno = ENOMEM;
40                 return (uint64_t)-1;
41         }
42         return SMB_VFS_NEXT_DISK_FREE(handle, cappath, small_query, bsize,
43                                         dfree, dsize);
44 }
45
46 static DIR *cap_opendir(vfs_handle_struct *handle, const char *fname, const char *mask, uint32 attr)
47 {
48         char *capname = capencode(talloc_tos(), fname);
49
50         if (!capname) {
51                 errno = ENOMEM;
52                 return NULL;
53         }
54         return SMB_VFS_NEXT_OPENDIR(handle, capname, mask, attr);
55 }
56
57 static struct dirent *cap_readdir(vfs_handle_struct *handle,
58                                       DIR *dirp,
59                                       SMB_STRUCT_STAT *sbuf)
60 {
61         struct dirent *result;
62         struct dirent *newdirent;
63         char *newname;
64         size_t newnamelen;
65         DEBUG(3,("cap: cap_readdir\n"));
66
67         result = SMB_VFS_NEXT_READDIR(handle, dirp, NULL);
68         if (!result) {
69                 return NULL;
70         }
71
72         newname = capdecode(talloc_tos(), result->d_name);
73         if (!newname) {
74                 return NULL;
75         }
76         DEBUG(3,("cap: cap_readdir: %s\n", newname));
77         newnamelen = strlen(newname)+1;
78         newdirent = (struct dirent *)talloc_array(talloc_tos(),
79                         char,
80                         sizeof(struct dirent)+
81                                 newnamelen);
82         if (!newdirent) {
83                 return NULL;
84         }
85         memcpy(newdirent, result, sizeof(struct dirent));
86         memcpy(&newdirent->d_name, newname, newnamelen);
87         return newdirent;
88 }
89
90 static int cap_mkdir(vfs_handle_struct *handle, const char *path, mode_t mode)
91 {
92         char *cappath = capencode(talloc_tos(), path);
93
94         if (!cappath) {
95                 errno = ENOMEM;
96                 return -1;
97         }
98         return SMB_VFS_NEXT_MKDIR(handle, cappath, mode);
99 }
100
101 static int cap_rmdir(vfs_handle_struct *handle, const char *path)
102 {
103         char *cappath = capencode(talloc_tos(), path);
104
105         if (!cappath) {
106                 errno = ENOMEM;
107                 return -1;
108         }
109         return SMB_VFS_NEXT_RMDIR(handle, cappath);
110 }
111
112 static int cap_open(vfs_handle_struct *handle, struct smb_filename *smb_fname,
113                     files_struct *fsp, int flags, mode_t mode)
114 {
115         char *cappath;
116         char *tmp_base_name = NULL;
117         int ret;
118
119         cappath = capencode(talloc_tos(), smb_fname->base_name);
120
121         if (!cappath) {
122                 errno = ENOMEM;
123                 return -1;
124         }
125
126         tmp_base_name = smb_fname->base_name;
127         smb_fname->base_name = cappath;
128
129         DEBUG(3,("cap: cap_open for %s\n", smb_fname_str_dbg(smb_fname)));
130         ret = SMB_VFS_NEXT_OPEN(handle, smb_fname, fsp, flags, mode);
131
132         smb_fname->base_name = tmp_base_name;
133         TALLOC_FREE(cappath);
134
135         return ret;
136 }
137
138 static int cap_rename(vfs_handle_struct *handle,
139                       const struct smb_filename *smb_fname_src,
140                       const struct smb_filename *smb_fname_dst)
141 {
142         char *capold = NULL;
143         char *capnew = NULL;
144         struct smb_filename *smb_fname_src_tmp = NULL;
145         struct smb_filename *smb_fname_dst_tmp = NULL;
146         NTSTATUS status;
147         int ret = -1;
148
149         capold = capencode(talloc_tos(), smb_fname_src->base_name);
150         capnew = capencode(talloc_tos(), smb_fname_dst->base_name);
151         if (!capold || !capnew) {
152                 errno = ENOMEM;
153                 goto out;
154         }
155
156         /* Setup temporary smb_filename structs. */
157         status = copy_smb_filename(talloc_tos(), smb_fname_src,
158                                    &smb_fname_src_tmp);
159         if (!NT_STATUS_IS_OK(status)) {
160                 errno = map_errno_from_nt_status(status);
161                 goto out;
162         }
163         status = copy_smb_filename(talloc_tos(), smb_fname_dst,
164                                    &smb_fname_dst_tmp);
165         if (!NT_STATUS_IS_OK(status)) {
166                 errno = map_errno_from_nt_status(status);
167                 goto out;
168         }
169
170         smb_fname_src_tmp->base_name = capold;
171         smb_fname_dst_tmp->base_name = capnew;
172
173         ret = SMB_VFS_NEXT_RENAME(handle, smb_fname_src_tmp,
174                                   smb_fname_dst_tmp);
175  out:
176         TALLOC_FREE(capold);
177         TALLOC_FREE(capnew);
178         TALLOC_FREE(smb_fname_src_tmp);
179         TALLOC_FREE(smb_fname_dst_tmp);
180
181         return ret;
182 }
183
184 static int cap_stat(vfs_handle_struct *handle, struct smb_filename *smb_fname)
185 {
186         char *cappath;
187         char *tmp_base_name = NULL;
188         int ret;
189
190         cappath = capencode(talloc_tos(), smb_fname->base_name);
191
192         if (!cappath) {
193                 errno = ENOMEM;
194                 return -1;
195         }
196
197         tmp_base_name = smb_fname->base_name;
198         smb_fname->base_name = cappath;
199
200         ret = SMB_VFS_NEXT_STAT(handle, smb_fname);
201
202         smb_fname->base_name = tmp_base_name;
203         TALLOC_FREE(cappath);
204
205         return ret;
206 }
207
208 static int cap_lstat(vfs_handle_struct *handle, struct smb_filename *smb_fname)
209 {
210         char *cappath;
211         char *tmp_base_name = NULL;
212         int ret;
213
214         cappath = capencode(talloc_tos(), smb_fname->base_name);
215
216         if (!cappath) {
217                 errno = ENOMEM;
218                 return -1;
219         }
220
221         tmp_base_name = smb_fname->base_name;
222         smb_fname->base_name = cappath;
223
224         ret = SMB_VFS_NEXT_LSTAT(handle, smb_fname);
225
226         smb_fname->base_name = tmp_base_name;
227         TALLOC_FREE(cappath);
228
229         return ret;
230 }
231
232 static int cap_unlink(vfs_handle_struct *handle,
233                       const struct smb_filename *smb_fname)
234 {
235         struct smb_filename *smb_fname_tmp = NULL;
236         char *cappath = NULL;
237         NTSTATUS status;
238         int ret;
239
240         cappath = capencode(talloc_tos(), smb_fname->base_name);
241         if (!cappath) {
242                 errno = ENOMEM;
243                 return -1;
244         }
245
246         /* Setup temporary smb_filename structs. */
247         status = copy_smb_filename(talloc_tos(), smb_fname,
248                                    &smb_fname_tmp);
249         if (!NT_STATUS_IS_OK(status)) {
250                 errno = map_errno_from_nt_status(status);
251                 return -1;
252         }
253
254         smb_fname_tmp->base_name = cappath;
255
256         ret = SMB_VFS_NEXT_UNLINK(handle, smb_fname_tmp);
257
258         TALLOC_FREE(smb_fname_tmp);
259         return ret;
260 }
261
262 static int cap_chmod(vfs_handle_struct *handle, const char *path, mode_t mode)
263 {
264         char *cappath = capencode(talloc_tos(), path);
265
266         if (!cappath) {
267                 errno = ENOMEM;
268                 return -1;
269         }
270         return SMB_VFS_NEXT_CHMOD(handle, cappath, mode);
271 }
272
273 static int cap_chown(vfs_handle_struct *handle, const char *path, uid_t uid, gid_t gid)
274 {
275         char *cappath = capencode(talloc_tos(), path);
276
277         if (!cappath) {
278                 errno = ENOMEM;
279                 return -1;
280         }
281         return SMB_VFS_NEXT_CHOWN(handle, cappath, uid, gid);
282 }
283
284 static int cap_lchown(vfs_handle_struct *handle, const char *path, uid_t uid, gid_t gid)
285 {
286         char *cappath = capencode(talloc_tos(), path);
287
288         if (!cappath) {
289                 errno = ENOMEM;
290                 return -1;
291         }
292         return SMB_VFS_NEXT_LCHOWN(handle, cappath, uid, gid);
293 }
294
295 static int cap_chdir(vfs_handle_struct *handle, const char *path)
296 {
297         char *cappath = capencode(talloc_tos(), path);
298
299         if (!cappath) {
300                 errno = ENOMEM;
301                 return -1;
302         }
303         DEBUG(3,("cap: cap_chdir for %s\n", path));
304         return SMB_VFS_NEXT_CHDIR(handle, cappath);
305 }
306
307 static int cap_ntimes(vfs_handle_struct *handle,
308                       const struct smb_filename *smb_fname,
309                       struct smb_file_time *ft)
310 {
311         struct smb_filename *smb_fname_tmp = NULL;
312         char *cappath = NULL;
313         NTSTATUS status;
314         int ret;
315
316         cappath = capencode(talloc_tos(), smb_fname->base_name);
317
318         if (!cappath) {
319                 errno = ENOMEM;
320                 return -1;
321         }
322
323         /* Setup temporary smb_filename structs. */
324         status = copy_smb_filename(talloc_tos(), smb_fname,
325                                    &smb_fname_tmp);
326         if (!NT_STATUS_IS_OK(status)) {
327                 errno = map_errno_from_nt_status(status);
328                 return -1;
329         }
330
331         smb_fname_tmp->base_name = cappath;
332
333         ret = SMB_VFS_NEXT_NTIMES(handle, smb_fname_tmp, ft);
334
335         TALLOC_FREE(smb_fname_tmp);
336         return ret;
337 }
338
339
340 static int cap_symlink(vfs_handle_struct *handle, const char *oldpath,
341                        const char *newpath)
342 {
343         char *capold = capencode(talloc_tos(), oldpath);
344         char *capnew = capencode(talloc_tos(), newpath);
345
346         if (!capold || !capnew) {
347                 errno = ENOMEM;
348                 return -1;
349         }
350         return SMB_VFS_NEXT_SYMLINK(handle, capold, capnew);
351 }
352
353 static int cap_readlink(vfs_handle_struct *handle, const char *path,
354                         char *buf, size_t bufsiz)
355 {
356         char *cappath = capencode(talloc_tos(), path);
357
358         if (!cappath) {
359                 errno = ENOMEM;
360                 return -1;
361         }
362         return SMB_VFS_NEXT_READLINK(handle, cappath, buf, bufsiz);
363 }
364
365 static int cap_link(vfs_handle_struct *handle, const char *oldpath, const char *newpath)
366 {
367         char *capold = capencode(talloc_tos(), oldpath);
368         char *capnew = capencode(talloc_tos(), newpath);
369
370         if (!capold || !capnew) {
371                 errno = ENOMEM;
372                 return -1;
373         }
374         return SMB_VFS_NEXT_LINK(handle, capold, capnew);
375 }
376
377 static int cap_mknod(vfs_handle_struct *handle, const char *path, mode_t mode, SMB_DEV_T dev)
378 {
379         char *cappath = capencode(talloc_tos(), path);
380
381         if (!cappath) {
382                 errno = ENOMEM;
383                 return -1;
384         }
385         return SMB_VFS_NEXT_MKNOD(handle, cappath, mode, dev);
386 }
387
388 static char *cap_realpath(vfs_handle_struct *handle, const char *path)
389 {
390         /* monyo need capencode'ed and capdecode'ed? */
391         char *cappath = capencode(talloc_tos(), path);
392
393         if (!cappath) {
394                 errno = ENOMEM;
395                 return NULL;
396         }
397         return SMB_VFS_NEXT_REALPATH(handle, cappath);
398 }
399
400 static int cap_chmod_acl(vfs_handle_struct *handle, const char *path, mode_t mode)
401 {
402         char *cappath = capencode(talloc_tos(), path);
403
404         /* If the underlying VFS doesn't have ACL support... */
405         if (!cappath) {
406                 errno = ENOMEM;
407                 return -1;
408         }
409         return SMB_VFS_NEXT_CHMOD_ACL(handle, cappath, mode);
410 }
411
412 static SMB_ACL_T cap_sys_acl_get_file(vfs_handle_struct *handle, const char *path, SMB_ACL_TYPE_T type)
413 {
414         char *cappath = capencode(talloc_tos(), path);
415
416         if (!cappath) {
417                 errno = ENOMEM;
418                 return (SMB_ACL_T)NULL;
419         }
420         return SMB_VFS_NEXT_SYS_ACL_GET_FILE(handle, cappath, type);
421 }
422
423 static int cap_sys_acl_set_file(vfs_handle_struct *handle, const char *path, SMB_ACL_TYPE_T acltype, SMB_ACL_T theacl)
424 {
425         char *cappath = capencode(talloc_tos(), path);
426
427         if (!cappath) {
428                 errno = ENOMEM;
429                 return -1;
430         }
431         return SMB_VFS_NEXT_SYS_ACL_SET_FILE(handle, cappath, acltype, theacl);
432 }
433
434 static int cap_sys_acl_delete_def_file(vfs_handle_struct *handle, const char *path)
435 {
436         char *cappath = capencode(talloc_tos(), path);
437
438         if (!cappath) {
439                 errno = ENOMEM;
440                 return -1;
441         }
442         return SMB_VFS_NEXT_SYS_ACL_DELETE_DEF_FILE(handle, cappath);
443 }
444
445 static ssize_t cap_getxattr(vfs_handle_struct *handle, const char *path, const char *name, void *value, size_t size)
446 {
447         char *cappath = capencode(talloc_tos(), path);
448         char *capname = capencode(talloc_tos(), name);
449
450         if (!cappath || !capname) {
451                 errno = ENOMEM;
452                 return -1;
453         }
454         return SMB_VFS_NEXT_GETXATTR(handle, cappath, capname, value, size);
455 }
456
457 static ssize_t cap_fgetxattr(vfs_handle_struct *handle, struct files_struct *fsp, const char *path, void *value, size_t size)
458 {
459         char *cappath = capencode(talloc_tos(), path);
460
461         if (!cappath) {
462                 errno = ENOMEM;
463                 return -1;
464         }
465         return SMB_VFS_NEXT_FGETXATTR(handle, fsp, cappath, value, size);
466 }
467
468 static ssize_t cap_listxattr(vfs_handle_struct *handle, const char *path, char *list, size_t size)
469 {
470         char *cappath = capencode(talloc_tos(), path);
471
472         if (!cappath) {
473                 errno = ENOMEM;
474                 return -1;
475         }
476         return SMB_VFS_NEXT_LISTXATTR(handle, cappath, list, size);
477 }
478
479 static int cap_removexattr(vfs_handle_struct *handle, const char *path, const char *name)
480 {
481         char *cappath = capencode(talloc_tos(), path);
482         char *capname = capencode(talloc_tos(), name);
483
484         if (!cappath || !capname) {
485                 errno = ENOMEM;
486                 return -1;
487         }
488         return SMB_VFS_NEXT_REMOVEXATTR(handle, cappath, capname);
489 }
490
491 static int cap_lremovexattr(vfs_handle_struct *handle, const char *path, const char *name)
492 {
493         char *cappath = capencode(talloc_tos(), path);
494         char *capname = capencode(talloc_tos(), name);
495
496         if (!cappath || !capname) {
497                 errno = ENOMEM;
498                 return -1;
499         }
500         return SMB_VFS_NEXT_LREMOVEXATTR(handle, cappath, capname);
501 }
502
503 static int cap_fremovexattr(vfs_handle_struct *handle, struct files_struct *fsp, const char *path)
504 {
505         char *cappath = capencode(talloc_tos(), path);
506
507         if (!cappath) {
508                 errno = ENOMEM;
509                 return -1;
510         }
511         return SMB_VFS_NEXT_FREMOVEXATTR(handle, fsp, cappath);
512 }
513
514 static int cap_setxattr(vfs_handle_struct *handle, const char *path, const char *name, const void *value, size_t size, int flags)
515 {
516         char *cappath = capencode(talloc_tos(), path);
517         char *capname = capencode(talloc_tos(), name);
518
519         if (!cappath || !capname) {
520                 errno = ENOMEM;
521                 return -1;
522         }
523         return SMB_VFS_NEXT_SETXATTR(handle, cappath, capname, value, size, flags);
524 }
525
526 static int cap_fsetxattr(vfs_handle_struct *handle, struct files_struct *fsp, const char *path, const void *value, size_t size, int flags)
527 {
528         char *cappath = capencode(talloc_tos(), path);
529
530         if (!cappath) {
531                 errno = ENOMEM;
532                 return -1;
533         }
534         return SMB_VFS_NEXT_FSETXATTR(handle, fsp, cappath, value, size, flags);
535 }
536
537 static struct vfs_fn_pointers vfs_cap_fns = {
538         .disk_free_fn = cap_disk_free,
539         .opendir_fn = cap_opendir,
540         .readdir_fn = cap_readdir,
541         .mkdir_fn = cap_mkdir,
542         .rmdir_fn = cap_rmdir,
543         .open_fn = cap_open,
544         .rename_fn = cap_rename,
545         .stat_fn = cap_stat,
546         .lstat_fn = cap_lstat,
547         .unlink_fn = cap_unlink,
548         .chmod_fn = cap_chmod,
549         .chown_fn = cap_chown,
550         .lchown_fn = cap_lchown,
551         .chdir_fn = cap_chdir,
552         .ntimes_fn = cap_ntimes,
553         .symlink_fn = cap_symlink,
554         .readlink_fn = cap_readlink,
555         .link_fn = cap_link,
556         .mknod_fn = cap_mknod,
557         .realpath_fn = cap_realpath,
558         .chmod_acl_fn = cap_chmod_acl,
559         .sys_acl_get_file_fn = cap_sys_acl_get_file,
560         .sys_acl_set_file_fn = cap_sys_acl_set_file,
561         .sys_acl_delete_def_file_fn = cap_sys_acl_delete_def_file,
562         .getxattr_fn = cap_getxattr,
563         .fgetxattr_fn = cap_fgetxattr,
564         .listxattr_fn = cap_listxattr,
565         .removexattr_fn = cap_removexattr,
566         .lremovexattr_fn = cap_lremovexattr,
567         .fremovexattr_fn = cap_fremovexattr,
568         .setxattr_fn = cap_setxattr,
569         .fsetxattr_fn = cap_fsetxattr
570 };
571
572 NTSTATUS vfs_cap_init(void);
573 NTSTATUS vfs_cap_init(void)
574 {
575         return smb_register_vfs(SMB_VFS_INTERFACE_VERSION, "cap",
576                                 &vfs_cap_fns);
577 }
578
579 /* For CAP functions */
580 #define hex_tag ':'
581 #define hex2bin(c)              hex2bin_table[(unsigned char)(c)]
582 #define bin2hex(c)              bin2hex_table[(unsigned char)(c)]
583 #define is_hex(s)               ((s)[0] == hex_tag)
584
585 static unsigned char hex2bin_table[256] = {
586 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, /* 0x00 */
587 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, /* 0x10 */
588 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, /* 0x20 */
589 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 0, 0, 0, 0, 0, 0, /* 0x30 */
590 0000, 0x0a, 0x0b, 0x0c, 0x0d, 0x0e, 0x0f, 0000, /* 0x40 */
591 0000, 0000, 0000, 0000, 0000, 0000, 0000, 0000,
592 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, /* 0x50 */
593 0000, 0x0a, 0x0b, 0x0c, 0x0d, 0x0e, 0x0f, 0000, /* 0x60 */
594 0000, 0000, 0000, 0000, 0000, 0000, 0000, 0000,
595 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, /* 0x70 */
596 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, /* 0x80 */
597 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, /* 0x90 */
598 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, /* 0xa0 */
599 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, /* 0xb0 */
600 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, /* 0xc0 */
601 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, /* 0xd0 */
602 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, /* 0xe0 */
603 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0  /* 0xf0 */
604 };
605 static unsigned char bin2hex_table[256] = "0123456789abcdef";
606
607 /*******************************************************************
608   original code -> ":xx"  - CAP format
609 ********************************************************************/
610
611 static char *capencode(TALLOC_CTX *ctx, const char *from)
612 {
613         char *out = NULL;
614         const char *p1;
615         char *to = NULL;
616         size_t len = 0;
617
618         for (p1 = from; *p1; p1++) {
619                 if ((unsigned char)*p1 >= 0x80) {
620                         len += 3;
621                 } else {
622                         len++;
623                 }
624         }
625         len++;
626
627         to = talloc_array(ctx, char, len);
628         if (!to) {
629                 return NULL;
630         }
631
632         for (out = to; *from;) {
633                 /* buffer husoku error */
634                 if ((unsigned char)*from >= 0x80) {
635                         *out++ = hex_tag;
636                         *out++ = bin2hex (((*from)>>4)&0x0f);
637                         *out++ = bin2hex ((*from)&0x0f);
638                         from++;
639                 } else {
640                         *out++ = *from++;
641                 }
642         }
643         *out = '\0';
644         return to;
645 }
646
647 /*******************************************************************
648   CAP -> original code
649 ********************************************************************/
650 /* ":xx" -> a byte */
651
652 static char *capdecode(TALLOC_CTX *ctx, const char *from)
653 {
654         const char *p1;
655         char *out = NULL;
656         char *to = NULL;
657         size_t len = 0;
658
659         for (p1 = from; *p1; len++) {
660                 if (is_hex(p1)) {
661                         p1 += 3;
662                 } else {
663                         p1++;
664                 }
665         }
666         len++;
667
668         to = talloc_array(ctx, char, len);
669         if (!to) {
670                 return NULL;
671         }
672
673         for (out = to; *from;) {
674                 if (is_hex(from)) {
675                         *out++ = (hex2bin(from[1])<<4) | (hex2bin(from[2]));
676                         from += 3;
677                 } else {
678                         *out++ = *from++;
679                 }
680         }
681         *out = '\0';
682         return to;
683 }