VFS: Modify opendir to take a const struct smb_filename * instead of const char *
[metze/samba/wip.git] / source3 / modules / vfs_catia.c
1 /*
2  * Catia VFS module
3  *
4  * Implement a fixed mapping of forbidden NT characters in filenames that are
5  * used a lot by the CAD package Catia.
6  *
7  * Yes, this a BAD BAD UGLY INCOMPLETE hack, but it helps quite some people
8  * out there. Catia V4 on AIX uses characters like "<*$ a *lot*, all forbidden
9  * under Windows...
10  *
11  * Copyright (C) Volker Lendecke, 2005
12  * Copyright (C) Aravind Srinivasan, 2009
13  * Copyright (C) Guenter Kukkukk, 2013
14  *
15  * This program is free software; you can redistribute it and/or modify
16  * it under the terms of the GNU General Public License as published by
17  * the Free Software Foundation; either version 3 of the License, or
18  * (at your option) any later version.
19  *
20  * This program is distributed in the hope that it will be useful,
21  * but WITHOUT ANY WARRANTY; without even the implied warranty of
22  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
23  * GNU General Public License for more details.
24  *
25  * You should have received a copy of the GNU General Public License
26  * along with this program; if not, see <http://www.gnu.org/licenses/>.
27  */
28
29
30 #include "includes.h"
31 #include "smbd/smbd.h"
32
33 static int vfs_catia_debug_level = DBGC_VFS;
34
35 #undef DBGC_CLASS
36 #define DBGC_CLASS vfs_catia_debug_level
37
38 #define GLOBAL_SNUM     0xFFFFFFF
39 #define MAP_SIZE        0xFF
40 #define MAP_NUM         0x101 /* max unicode charval / MAP_SIZE */
41 #define T_OFFSET(_v_)   ((_v_ % MAP_SIZE))
42 #define T_START(_v_)    (((_v_ / MAP_SIZE) * MAP_SIZE))
43 #define T_PICK(_v_)     ((_v_ / MAP_SIZE))
44
45 struct char_mappings {
46         smb_ucs2_t entry[MAP_SIZE][2];
47 };
48
49 struct share_mapping_entry {
50         int snum;
51         struct share_mapping_entry *next;
52         struct char_mappings **mappings;
53 };
54
55 struct share_mapping_entry *srt_head = NULL;
56
57 static bool build_table(struct char_mappings **cmaps, int value)
58 {
59         int i;
60         int start = T_START(value);
61
62         (*cmaps) = talloc_zero(NULL, struct char_mappings);
63
64         if (!*cmaps)
65                 return False;
66
67         for (i = 0; i < MAP_SIZE;i++) {
68                 (*cmaps)->entry[i][vfs_translate_to_unix] = start + i;
69                 (*cmaps)->entry[i][vfs_translate_to_windows] = start + i;
70         }
71
72         return True;
73 }
74
75 static void set_tables(struct char_mappings **cmaps,
76                        long unix_map,
77                        long windows_map)
78 {
79         int i;
80
81         /* set unix -> windows */
82         i = T_OFFSET(unix_map);
83         cmaps[T_PICK(unix_map)]->entry[i][vfs_translate_to_windows] = windows_map;
84
85         /* set windows -> unix */
86         i = T_OFFSET(windows_map);
87         cmaps[T_PICK(windows_map)]->entry[i][vfs_translate_to_unix] = unix_map;
88 }
89
90 static bool build_ranges(struct char_mappings **cmaps,
91                          long unix_map,
92                          long windows_map)
93 {
94
95         if (!cmaps[T_PICK(unix_map)]) {
96                 if (!build_table(&cmaps[T_PICK(unix_map)], unix_map))
97                         return False;
98         }
99
100         if (!cmaps[T_PICK(windows_map)]) {
101                 if (!build_table(&cmaps[T_PICK(windows_map)], windows_map))
102                         return False;
103         }
104
105         set_tables(cmaps, unix_map, windows_map);
106
107         return True;
108 }
109
110 static struct share_mapping_entry *get_srt(connection_struct *conn,
111                                            struct share_mapping_entry **global)
112 {
113         struct share_mapping_entry *share;
114
115         for (share = srt_head; share != NULL; share = share->next) {
116                 if (share->snum == GLOBAL_SNUM)
117                         (*global) = share;
118
119                 if (share->snum == SNUM(conn))
120                         return share;
121         }
122
123         return share;
124 }
125
126 static struct share_mapping_entry *add_srt(int snum, const char **mappings)
127 {
128
129         char *tmp;
130         fstring mapping;
131         int i;
132         long unix_map, windows_map;
133         struct share_mapping_entry *ret = NULL;
134
135         ret = (struct share_mapping_entry *)
136                 TALLOC_ZERO(NULL, sizeof(struct share_mapping_entry) +
137                 (mappings ? (MAP_NUM * sizeof(struct char_mappings *)) : 0));
138
139         if (!ret)
140                 return ret;
141
142         ret->snum = snum;
143
144         if (mappings) {
145                 ret->mappings = (struct char_mappings**) ((unsigned char*) ret +
146                     sizeof(struct share_mapping_entry));
147                 memset(ret->mappings, 0,
148                     MAP_NUM * sizeof(struct char_mappings *));
149         } else {
150                 ret->mappings = NULL;
151                 return ret;
152         }
153
154         /*
155          * catia mappings are of the form :
156          * UNIX char (in 0xnn hex) : WINDOWS char (in 0xnn hex)
157          *
158          * multiple mappings are comma separated in smb.conf
159          */
160         for (i=0;mappings[i];i++) {
161                 fstrcpy(mapping, mappings[i]);
162                 unix_map = strtol(mapping, &tmp, 16);
163                 if (unix_map == 0 && errno == EINVAL) {
164                         DEBUG(0, ("INVALID CATIA MAPPINGS - %s\n", mapping));
165                         continue;
166                 }
167                 windows_map = strtol(++tmp, NULL, 16);
168                 if (windows_map == 0 && errno == EINVAL) {
169                         DEBUG(0, ("INVALID CATIA MAPPINGS - %s\n", mapping));
170                         continue;
171                 }
172
173                 if (!build_ranges(ret->mappings, unix_map, windows_map)) {
174                         DEBUG(0, ("TABLE ERROR - CATIA MAPPINGS - %s\n", mapping));
175                         continue;
176                 }
177         }
178
179         ret->next = srt_head;
180         srt_head = ret;
181
182         return ret;
183 }
184
185 static bool init_mappings(connection_struct *conn,
186                           struct share_mapping_entry **selected_out)
187 {
188         const char **mappings = NULL;
189         struct share_mapping_entry *share_level = NULL;
190         struct share_mapping_entry *global = NULL;
191
192         /* check srt cache */
193         share_level = get_srt(conn, &global);
194         if (share_level) {
195                 *selected_out = share_level;
196                 return (share_level->mappings != NULL);
197         }
198
199         /* see if we have a global setting */
200         if (!global) {
201                 /* global setting */
202                 mappings = lp_parm_string_list(-1, "catia", "mappings", NULL);
203                 global = add_srt(GLOBAL_SNUM, mappings);
204         }
205
206         /* no global setting - what about share level ? */
207         mappings = lp_parm_string_list(SNUM(conn), "catia", "mappings", NULL);
208         share_level = add_srt(SNUM(conn), mappings);
209
210         if (share_level->mappings) {
211                 (*selected_out) = share_level;
212                 return True;
213         }
214         if (global->mappings) {
215                 share_level->mappings = global->mappings;
216                 (*selected_out) = share_level;
217                 return True;
218         }
219
220         return False;
221 }
222
223 static NTSTATUS catia_string_replace_allocate(connection_struct *conn,
224                                               const char *name_in,
225                                               char **mapped_name,
226                                         enum vfs_translate_direction direction)
227 {
228         static smb_ucs2_t *tmpbuf = NULL;
229         smb_ucs2_t *ptr;
230         struct share_mapping_entry *selected;
231         struct char_mappings *map = NULL;
232         size_t converted_size;
233         TALLOC_CTX *ctx = talloc_tos();
234
235         if (!init_mappings(conn, &selected)) {
236                 /* No mappings found. Just use the old name */
237                 *mapped_name = talloc_strdup(NULL, name_in);
238                 if (!*mapped_name) {
239                         errno = ENOMEM;
240                         return NT_STATUS_NO_MEMORY;
241                 }
242                 return NT_STATUS_OK;
243         }
244
245         if ((push_ucs2_talloc(ctx, &tmpbuf, name_in,
246                               &converted_size)) == false) {
247                 return map_nt_error_from_unix(errno);
248         }
249         ptr = tmpbuf;
250         for(;*ptr;ptr++) {
251                 if (*ptr == 0)
252                         break;
253                 map = selected->mappings[T_PICK((*ptr))];
254
255                 /* nothing to do */
256                 if (!map)
257                         continue;
258
259                 *ptr = map->entry[T_OFFSET((*ptr))][direction];
260         }
261
262         if ((pull_ucs2_talloc(ctx, mapped_name, tmpbuf,
263                               &converted_size)) == false) {
264                 TALLOC_FREE(tmpbuf);
265                 return map_nt_error_from_unix(errno);
266         }
267         TALLOC_FREE(tmpbuf);
268         return NT_STATUS_OK;
269 }
270
271 static DIR *catia_opendir(vfs_handle_struct *handle,
272                         const struct smb_filename *smb_fname,
273                         const char *mask,
274                         uint32_t attr)
275 {
276         char *name_mapped = NULL;
277         NTSTATUS status;
278         DIR *ret;
279         struct smb_filename *mapped_smb_fname = NULL;
280
281         status = catia_string_replace_allocate(handle->conn,
282                                 smb_fname->base_name,
283                                 &name_mapped,
284                                 vfs_translate_to_unix);
285         if (!NT_STATUS_IS_OK(status)) {
286                 errno = map_errno_from_nt_status(status);
287                 return NULL;
288         }
289
290         mapped_smb_fname = synthetic_smb_fname(talloc_tos(),
291                                 name_mapped,
292                                 NULL,
293                                 NULL);
294         if (mapped_smb_fname == NULL) {
295                 TALLOC_FREE(mapped_smb_fname);
296                 errno = ENOMEM;
297                 return NULL;
298         }
299
300         ret = SMB_VFS_NEXT_OPENDIR(handle, mapped_smb_fname, mask, attr);
301
302         TALLOC_FREE(name_mapped);
303         TALLOC_FREE(mapped_smb_fname);
304
305         return ret;
306 }
307
308 /*
309  * TRANSLATE_NAME call which converts the given name to
310  * "WINDOWS displayable" name
311  */
312 static NTSTATUS catia_translate_name(struct vfs_handle_struct *handle,
313                                      const char *orig_name,
314                                      enum vfs_translate_direction direction,
315                                      TALLOC_CTX *mem_ctx,
316                                      char **pmapped_name)
317 {
318         char *name = NULL;
319         char *mapped_name;
320         NTSTATUS status, ret;
321
322         /*
323          * Copy the supplied name and free the memory for mapped_name,
324          * already allocated by the caller.
325          * We will be allocating new memory for mapped_name in
326          * catia_string_replace_allocate
327          */
328         name = talloc_strdup(talloc_tos(), orig_name);
329         if (!name) {
330                 errno = ENOMEM;
331                 return NT_STATUS_NO_MEMORY;
332         }
333         status = catia_string_replace_allocate(handle->conn, name,
334                         &mapped_name, direction);
335
336         TALLOC_FREE(name);
337         if (!NT_STATUS_IS_OK(status)) {
338                 return status;
339         }
340
341         ret = SMB_VFS_NEXT_TRANSLATE_NAME(handle, mapped_name, direction,
342                                           mem_ctx, pmapped_name);
343
344         if (NT_STATUS_EQUAL(ret, NT_STATUS_NONE_MAPPED)) {
345                 *pmapped_name = talloc_move(mem_ctx, &mapped_name);
346                 /* we need to return the former translation result here */
347                 ret = status;
348         } else {
349                 TALLOC_FREE(mapped_name);
350         }
351
352         return ret;
353 }
354
355 static int catia_open(vfs_handle_struct *handle,
356                       struct smb_filename *smb_fname,
357                       files_struct *fsp,
358                       int flags,
359                       mode_t mode)
360 {
361         char *name_mapped = NULL;
362         char *tmp_base_name;
363         int ret;
364         NTSTATUS status;
365
366         tmp_base_name = smb_fname->base_name;
367         status = catia_string_replace_allocate(handle->conn,
368                                         smb_fname->base_name,
369                                         &name_mapped, vfs_translate_to_unix);
370         if (!NT_STATUS_IS_OK(status)) {
371                 errno = map_errno_from_nt_status(status);
372                 return -1;
373         }
374
375         smb_fname->base_name = name_mapped;
376         ret = SMB_VFS_NEXT_OPEN(handle, smb_fname, fsp, flags, mode);
377         smb_fname->base_name = tmp_base_name;
378         TALLOC_FREE(name_mapped);
379
380         return ret;
381 }
382
383 static int catia_rename(vfs_handle_struct *handle,
384                         const struct smb_filename *smb_fname_src,
385                         const struct smb_filename *smb_fname_dst)
386 {
387         TALLOC_CTX *ctx = talloc_tos();
388         struct smb_filename *smb_fname_src_tmp = NULL;
389         struct smb_filename *smb_fname_dst_tmp = NULL;
390         char *src_name_mapped = NULL;
391         char *dst_name_mapped = NULL;
392         NTSTATUS status;
393         int ret = -1;
394
395         status = catia_string_replace_allocate(handle->conn,
396                                 smb_fname_src->base_name,
397                                 &src_name_mapped, vfs_translate_to_unix);
398         if (!NT_STATUS_IS_OK(status)) {
399                 errno = map_errno_from_nt_status(status);
400                 return -1;
401         }
402
403         status = catia_string_replace_allocate(handle->conn,
404                                 smb_fname_dst->base_name,
405                                 &dst_name_mapped, vfs_translate_to_unix);
406         if (!NT_STATUS_IS_OK(status)) {
407                 errno = map_errno_from_nt_status(status);
408                 return -1;
409         }
410
411         /* Setup temporary smb_filename structs. */
412         smb_fname_src_tmp = cp_smb_filename(ctx, smb_fname_src);
413         if (smb_fname_src_tmp == NULL) {
414                 errno = ENOMEM;
415                 goto out;
416         }
417
418         smb_fname_dst_tmp = cp_smb_filename(ctx, smb_fname_dst);
419         if (smb_fname_dst_tmp == NULL) {
420                 errno = ENOMEM;
421                 goto out;
422         }
423
424         smb_fname_src_tmp->base_name = src_name_mapped;
425         smb_fname_dst_tmp->base_name = dst_name_mapped; 
426         DEBUG(10, ("converted old name: %s\n",
427                                 smb_fname_str_dbg(smb_fname_src_tmp)));
428         DEBUG(10, ("converted new name: %s\n",
429                                 smb_fname_str_dbg(smb_fname_dst_tmp)));
430
431         ret = SMB_VFS_NEXT_RENAME(handle, smb_fname_src_tmp,
432                         smb_fname_dst_tmp);
433 out:
434         TALLOC_FREE(src_name_mapped);
435         TALLOC_FREE(dst_name_mapped);
436         TALLOC_FREE(smb_fname_src_tmp);
437         TALLOC_FREE(smb_fname_dst_tmp);
438         return ret;
439 }
440
441 static int catia_stat(vfs_handle_struct *handle,
442                       struct smb_filename *smb_fname)
443 {
444         char *name = NULL;
445         char *tmp_base_name;
446         int ret;
447         NTSTATUS status;
448
449         status = catia_string_replace_allocate(handle->conn,
450                                 smb_fname->base_name,
451                                 &name, vfs_translate_to_unix);
452         if (!NT_STATUS_IS_OK(status)) {
453                 errno = map_errno_from_nt_status(status);
454                 return -1;
455         }
456
457         tmp_base_name = smb_fname->base_name;
458         smb_fname->base_name = name;
459
460         ret = SMB_VFS_NEXT_STAT(handle, smb_fname);
461         smb_fname->base_name = tmp_base_name;
462
463         TALLOC_FREE(name);
464         return ret;
465 }
466
467 static int catia_lstat(vfs_handle_struct *handle,
468                        struct smb_filename *smb_fname)
469 {
470         char *name = NULL;
471         char *tmp_base_name;
472         int ret;
473         NTSTATUS status;
474
475         status = catia_string_replace_allocate(handle->conn,
476                                 smb_fname->base_name,
477                                 &name, vfs_translate_to_unix);
478         if (!NT_STATUS_IS_OK(status)) {
479                 errno = map_errno_from_nt_status(status);
480                 return -1;
481         }
482
483         tmp_base_name = smb_fname->base_name;
484         smb_fname->base_name = name;
485
486         ret = SMB_VFS_NEXT_LSTAT(handle, smb_fname);
487         smb_fname->base_name = tmp_base_name;
488         TALLOC_FREE(name);
489
490         return ret;
491 }
492
493 static int catia_unlink(vfs_handle_struct *handle,
494                         const struct smb_filename *smb_fname)
495 {
496         struct smb_filename *smb_fname_tmp = NULL;
497         char *name = NULL;
498         NTSTATUS status;
499         int ret;
500
501         status = catia_string_replace_allocate(handle->conn,
502                                         smb_fname->base_name,
503                                         &name, vfs_translate_to_unix);
504         if (!NT_STATUS_IS_OK(status)) {
505                 errno = map_errno_from_nt_status(status);
506                 return -1;
507         }
508
509         /* Setup temporary smb_filename structs. */
510         smb_fname_tmp = cp_smb_filename(talloc_tos(), smb_fname);
511         if (smb_fname_tmp == NULL) {
512                 errno = ENOMEM;
513                 return -1;
514         }
515
516         smb_fname_tmp->base_name = name;
517         ret = SMB_VFS_NEXT_UNLINK(handle, smb_fname_tmp);
518         TALLOC_FREE(smb_fname_tmp);
519         TALLOC_FREE(name);
520
521         return ret;
522 }
523
524 static int catia_chown(vfs_handle_struct *handle,
525                        const char *path,
526                        uid_t uid,
527                        gid_t gid)
528 {
529         char *name = NULL;
530         NTSTATUS status;
531         int ret;
532
533         status = catia_string_replace_allocate(handle->conn, path,
534                                         &name, vfs_translate_to_unix);
535         if (!NT_STATUS_IS_OK(status)) {
536                 errno = map_errno_from_nt_status(status);
537                 return -1;
538         }
539
540         ret = SMB_VFS_NEXT_CHOWN(handle, name, uid, gid);
541         TALLOC_FREE(name);
542
543         return ret;
544 }
545
546 static int catia_lchown(vfs_handle_struct *handle,
547                         const char *path,
548                         uid_t uid,
549                         gid_t gid)
550 {
551         char *name = NULL;
552         NTSTATUS status;
553         int ret;
554
555         status = catia_string_replace_allocate(handle->conn, path,
556                                         &name, vfs_translate_to_unix);
557         if (!NT_STATUS_IS_OK(status)) {
558                 errno = map_errno_from_nt_status(status);
559                 return -1;
560         }
561
562         ret = SMB_VFS_NEXT_LCHOWN(handle, name, uid, gid);
563         TALLOC_FREE(name);
564
565         return ret;
566 }
567
568 static int catia_chmod(vfs_handle_struct *handle, const char *path, mode_t mode)
569 {
570         char *name = NULL;
571         NTSTATUS status;
572         int ret;
573
574         status = catia_string_replace_allocate(handle->conn, path,
575                                         &name, vfs_translate_to_unix);
576         if (!NT_STATUS_IS_OK(status)) {
577                 errno = map_errno_from_nt_status(status);
578                 return -1;
579         }
580
581         ret = SMB_VFS_NEXT_CHMOD(handle, name, mode);
582         TALLOC_FREE(name);
583
584         return ret;
585 }
586
587 static int catia_rmdir(vfs_handle_struct *handle,
588                        const struct smb_filename *smb_fname)
589 {
590         char *name = NULL;
591         NTSTATUS status;
592         int ret;
593         struct smb_filename *catia_smb_fname = NULL;
594
595         status = catia_string_replace_allocate(handle->conn,
596                                 smb_fname->base_name,
597                                 &name,
598                                 vfs_translate_to_unix);
599         if (!NT_STATUS_IS_OK(status)) {
600                 errno = map_errno_from_nt_status(status);
601                 return -1;
602         }
603         catia_smb_fname = synthetic_smb_fname(talloc_tos(),
604                                         name,
605                                         NULL,
606                                         NULL);
607         if (catia_smb_fname == NULL) {
608                 TALLOC_FREE(name);
609                 errno = ENOMEM;
610                 return -1;
611         }
612
613         ret = SMB_VFS_NEXT_RMDIR(handle, catia_smb_fname);
614         TALLOC_FREE(name);
615         TALLOC_FREE(catia_smb_fname);
616
617         return ret;
618 }
619
620 static int catia_mkdir(vfs_handle_struct *handle,
621                        const struct smb_filename *smb_fname,
622                        mode_t mode)
623 {
624         char *name = NULL;
625         NTSTATUS status;
626         int ret;
627         struct smb_filename *catia_smb_fname = NULL;
628
629         status = catia_string_replace_allocate(handle->conn,
630                                 smb_fname->base_name,
631                                 &name,
632                                 vfs_translate_to_unix);
633         if (!NT_STATUS_IS_OK(status)) {
634                 errno = map_errno_from_nt_status(status);
635                 return -1;
636         }
637         catia_smb_fname = synthetic_smb_fname(talloc_tos(),
638                                         name,
639                                         NULL,
640                                         NULL);
641         if (catia_smb_fname == NULL) {
642                 TALLOC_FREE(name);
643                 errno = ENOMEM;
644                 return -1;
645         }
646
647         ret = SMB_VFS_NEXT_MKDIR(handle, catia_smb_fname, mode);
648         TALLOC_FREE(name);
649         TALLOC_FREE(catia_smb_fname);
650
651         return ret;
652 }
653
654 static int catia_chdir(vfs_handle_struct *handle,
655                        const char *path)
656 {
657         char *name = NULL;
658         NTSTATUS status;
659         int ret;
660
661         status = catia_string_replace_allocate(handle->conn, path,
662                                         &name, vfs_translate_to_unix);
663         if (!NT_STATUS_IS_OK(status)) {
664                 errno = map_errno_from_nt_status(status);
665                 return -1;
666         }
667
668         ret = SMB_VFS_NEXT_CHDIR(handle, name);
669         TALLOC_FREE(name);
670
671         return ret;
672 }
673
674 static int catia_ntimes(vfs_handle_struct *handle,
675                         const struct smb_filename *smb_fname,
676                         struct smb_file_time *ft)
677 {
678         struct smb_filename *smb_fname_tmp = NULL;
679         char *name = NULL;
680         NTSTATUS status;
681         int ret;
682
683         status = catia_string_replace_allocate(handle->conn,
684                                 smb_fname->base_name,
685                                 &name, vfs_translate_to_unix);
686         if (!NT_STATUS_IS_OK(status)) {
687                 errno = map_errno_from_nt_status(status);
688                 return -1;
689         }
690
691         smb_fname_tmp = cp_smb_filename(talloc_tos(), smb_fname);
692         if (smb_fname_tmp == NULL) {
693                 errno = ENOMEM;
694                 return -1;
695         }
696
697         smb_fname_tmp->base_name = name;
698         ret = SMB_VFS_NEXT_NTIMES(handle, smb_fname_tmp, ft);
699         TALLOC_FREE(name);
700         TALLOC_FREE(smb_fname_tmp);
701
702         return ret;
703 }
704
705 static char *
706 catia_realpath(vfs_handle_struct *handle, const char *path)
707 {
708         char *mapped_name = NULL;
709         NTSTATUS status;
710         char *ret = NULL;
711
712         status = catia_string_replace_allocate(handle->conn, path,
713                                         &mapped_name, vfs_translate_to_unix);
714         if (!NT_STATUS_IS_OK(status)) {
715                 errno = map_errno_from_nt_status(status);
716                 return NULL;
717         }
718
719         ret = SMB_VFS_NEXT_REALPATH(handle, mapped_name);
720         TALLOC_FREE(mapped_name);
721
722         return ret;
723 }
724
725 static int catia_chflags(struct vfs_handle_struct *handle,
726                          const char *path, unsigned int flags)
727 {
728         char *mapped_name = NULL;
729         NTSTATUS status;
730         int ret;
731
732         status = catia_string_replace_allocate(handle->conn, path,
733                                         &mapped_name, vfs_translate_to_unix);
734         if (!NT_STATUS_IS_OK(status)) {
735                 errno = map_errno_from_nt_status(status);
736                 return -1;
737         }
738
739         ret = SMB_VFS_NEXT_CHFLAGS(handle, mapped_name, flags);
740         TALLOC_FREE(mapped_name);
741
742         return ret;
743 }
744
745 static NTSTATUS
746 catia_streaminfo(struct vfs_handle_struct *handle,
747                  struct files_struct *fsp,
748                  const char *path,
749                  TALLOC_CTX *mem_ctx,
750                  unsigned int *_num_streams,
751                  struct stream_struct **_streams)
752 {
753         char *mapped_name = NULL;
754         NTSTATUS status;
755         int i;
756         unsigned int num_streams = 0;
757         struct stream_struct *streams = NULL;
758
759         *_num_streams = 0;
760         *_streams = NULL;
761
762         status = catia_string_replace_allocate(handle->conn, path,
763                                         &mapped_name, vfs_translate_to_unix);
764         if (!NT_STATUS_IS_OK(status)) {
765                 errno = map_errno_from_nt_status(status);
766                 return status;
767         }
768
769         status = SMB_VFS_NEXT_STREAMINFO(handle, fsp, mapped_name,
770                                          mem_ctx, &num_streams, &streams);
771         TALLOC_FREE(mapped_name);
772         if (!NT_STATUS_IS_OK(status)) {
773                 return status;
774         }
775
776         /*
777          * Translate stream names just like the base names
778          */
779         for (i = 0; i < num_streams; i++) {
780                 /*
781                  * Strip ":" prefix and ":$DATA" suffix to get a
782                  * "pure" stream name and only translate that.
783                  */
784                 void *old_ptr = streams[i].name;
785                 char *stream_name = streams[i].name + 1;
786                 char *stream_type = strrchr_m(stream_name, ':');
787
788                 if (stream_type != NULL) {
789                         *stream_type = '\0';
790                         stream_type += 1;
791                 }
792
793                 status = catia_string_replace_allocate(handle->conn, stream_name,
794                                                        &mapped_name, vfs_translate_to_windows);
795                 if (!NT_STATUS_IS_OK(status)) {
796                         TALLOC_FREE(streams);
797                         return status;
798                 }
799
800                 if (stream_type != NULL) {
801                         streams[i].name = talloc_asprintf(streams, ":%s:%s",
802                                                           mapped_name, stream_type);
803                 } else {
804                         streams[i].name = talloc_asprintf(streams, ":%s",
805                                                           mapped_name);
806                 }
807                 TALLOC_FREE(mapped_name);
808                 TALLOC_FREE(old_ptr);
809                 if (streams[i].name == NULL) {
810                         TALLOC_FREE(streams);
811                         return NT_STATUS_NO_MEMORY;
812                 }
813         }
814
815         *_num_streams = num_streams;
816         *_streams = streams;
817         return NT_STATUS_OK;
818 }
819
820 static NTSTATUS
821 catia_get_nt_acl(struct vfs_handle_struct *handle,
822                  const struct smb_filename *smb_fname,
823                  uint32_t security_info,
824                  TALLOC_CTX *mem_ctx,
825                  struct security_descriptor **ppdesc)
826 {
827         char *mapped_name = NULL;
828         const char *path = smb_fname->base_name;
829         struct smb_filename *mapped_smb_fname = NULL;
830         NTSTATUS status;
831
832         status = catia_string_replace_allocate(handle->conn,
833                                 path, &mapped_name, vfs_translate_to_unix);
834         if (!NT_STATUS_IS_OK(status)) {
835                 errno = map_errno_from_nt_status(status);
836                 return status;
837         }
838         mapped_smb_fname = synthetic_smb_fname(talloc_tos(),
839                                         mapped_name,
840                                         NULL,
841                                         NULL);
842         if (mapped_smb_fname == NULL) {
843                 TALLOC_FREE(mapped_name);
844                 return NT_STATUS_NO_MEMORY;
845         }
846
847         status = SMB_VFS_NEXT_GET_NT_ACL(handle, mapped_smb_fname,
848                                          security_info, mem_ctx, ppdesc);
849         TALLOC_FREE(mapped_name);
850         TALLOC_FREE(mapped_smb_fname);
851
852         return status;
853 }
854
855 static int
856 catia_chmod_acl(vfs_handle_struct *handle,
857                 const char *path,
858                 mode_t mode)
859 {
860         char *mapped_name = NULL;
861         NTSTATUS status;
862         int ret;
863
864         status = catia_string_replace_allocate(handle->conn,
865                                 path, &mapped_name, vfs_translate_to_unix);
866         if (!NT_STATUS_IS_OK(status)) {
867                 errno = map_errno_from_nt_status(status);
868                 return -1;
869         }
870
871         ret = SMB_VFS_NEXT_CHMOD_ACL(handle, mapped_name, mode);
872         TALLOC_FREE(mapped_name);
873         return ret;
874 }
875
876 static SMB_ACL_T
877 catia_sys_acl_get_file(vfs_handle_struct *handle,
878                        const char *path,
879                        SMB_ACL_TYPE_T type,
880                        TALLOC_CTX *mem_ctx)
881 {
882         char *mapped_name = NULL;
883         NTSTATUS status;
884         SMB_ACL_T ret;
885
886         status = catia_string_replace_allocate(handle->conn,
887                                 path, &mapped_name, vfs_translate_to_unix);
888         if (!NT_STATUS_IS_OK(status)) {
889                 errno = map_errno_from_nt_status(status);
890                 return NULL;
891         }
892
893         ret = SMB_VFS_NEXT_SYS_ACL_GET_FILE(handle, mapped_name, type, mem_ctx);
894         TALLOC_FREE(mapped_name);
895
896         return ret;
897 }
898
899 static int
900 catia_sys_acl_set_file(vfs_handle_struct *handle,
901                        const char *path,
902                        SMB_ACL_TYPE_T type,
903                        SMB_ACL_T theacl)
904 {
905         char *mapped_name = NULL;
906         NTSTATUS status;
907         int ret;
908
909         status = catia_string_replace_allocate(handle->conn,
910                                 path, &mapped_name, vfs_translate_to_unix);
911         if (!NT_STATUS_IS_OK(status)) {
912                 errno = map_errno_from_nt_status(status);
913                 return -1;
914         }
915
916         ret = SMB_VFS_NEXT_SYS_ACL_SET_FILE(handle, mapped_name, type, theacl);
917         TALLOC_FREE(mapped_name);
918
919         return ret;
920 }
921
922 static int
923 catia_sys_acl_delete_def_file(vfs_handle_struct *handle,
924                               const char *path)
925 {
926         char *mapped_name = NULL;
927         NTSTATUS status;
928         int ret;
929
930         status = catia_string_replace_allocate(handle->conn,
931                                 path, &mapped_name, vfs_translate_to_unix);
932         if (!NT_STATUS_IS_OK(status)) {
933                 errno = map_errno_from_nt_status(status);
934                 return -1;
935         }
936
937         ret = SMB_VFS_NEXT_SYS_ACL_DELETE_DEF_FILE(handle, mapped_name);
938         TALLOC_FREE(mapped_name);
939
940         return ret;
941 }
942
943 static ssize_t
944 catia_getxattr(vfs_handle_struct *handle, const char *path,
945                const char *name, void *value, size_t size)
946 {
947         char *mapped_name = NULL;
948         NTSTATUS status;
949         ssize_t ret;
950
951         status = catia_string_replace_allocate(handle->conn,
952                                 name, &mapped_name, vfs_translate_to_unix);
953         if (!NT_STATUS_IS_OK(status)) {
954                 errno = map_errno_from_nt_status(status);
955                 return -1;
956         }
957
958
959         ret = SMB_VFS_NEXT_GETXATTR(handle, path, mapped_name, value, size);
960         TALLOC_FREE(mapped_name);
961
962         return ret;
963 }
964
965 static ssize_t
966 catia_listxattr(vfs_handle_struct *handle, const char *path,
967                 char *list, size_t size)
968 {
969         char *mapped_name = NULL;
970         NTSTATUS status;
971         ssize_t ret;
972
973         status = catia_string_replace_allocate(handle->conn,
974                                 path, &mapped_name, vfs_translate_to_unix);
975         if (!NT_STATUS_IS_OK(status)) {
976                 errno = map_errno_from_nt_status(status);
977                 return -1;
978         }
979
980
981         ret = SMB_VFS_NEXT_LISTXATTR(handle, mapped_name, list, size);
982         TALLOC_FREE(mapped_name);
983
984         return ret;
985 }
986
987 static int
988 catia_removexattr(vfs_handle_struct *handle, const char *path,
989                   const char *name)
990 {
991         char *mapped_name = NULL;
992         NTSTATUS status;
993         ssize_t ret;
994
995         status = catia_string_replace_allocate(handle->conn,
996                                 name, &mapped_name, vfs_translate_to_unix);
997         if (!NT_STATUS_IS_OK(status)) {
998                 errno = map_errno_from_nt_status(status);
999                 return -1;
1000         }
1001
1002
1003         ret = SMB_VFS_NEXT_REMOVEXATTR(handle, path, mapped_name);
1004         TALLOC_FREE(mapped_name);
1005
1006         return ret;
1007 }
1008
1009 static int
1010 catia_setxattr(vfs_handle_struct *handle, const char *path,
1011                const char *name, const void *value, size_t size,
1012                int flags)
1013 {
1014         char *mapped_name = NULL;
1015         NTSTATUS status;
1016         ssize_t ret;
1017
1018         status = catia_string_replace_allocate(handle->conn,
1019                                 name, &mapped_name, vfs_translate_to_unix);
1020         if (!NT_STATUS_IS_OK(status)) {
1021                 errno = map_errno_from_nt_status(status);
1022                 return -1;
1023         }
1024
1025
1026         ret = SMB_VFS_NEXT_SETXATTR(handle, path, mapped_name, value, size, flags);
1027         TALLOC_FREE(mapped_name);
1028
1029         return ret;
1030 }
1031
1032 static struct vfs_fn_pointers vfs_catia_fns = {
1033         .mkdir_fn = catia_mkdir,
1034         .rmdir_fn = catia_rmdir,
1035         .opendir_fn = catia_opendir,
1036         .open_fn = catia_open,
1037         .rename_fn = catia_rename,
1038         .stat_fn = catia_stat,
1039         .lstat_fn = catia_lstat,
1040         .unlink_fn = catia_unlink,
1041         .chown_fn = catia_chown,
1042         .lchown_fn = catia_lchown,
1043         .chmod_fn = catia_chmod,
1044         .chdir_fn = catia_chdir,
1045         .ntimes_fn = catia_ntimes,
1046         .realpath_fn = catia_realpath,
1047         .chflags_fn = catia_chflags,
1048         .streaminfo_fn = catia_streaminfo,
1049         .translate_name_fn = catia_translate_name,
1050         .get_nt_acl_fn = catia_get_nt_acl,
1051         .chmod_acl_fn = catia_chmod_acl,
1052         .sys_acl_get_file_fn = catia_sys_acl_get_file,
1053         .sys_acl_set_file_fn = catia_sys_acl_set_file,
1054         .sys_acl_delete_def_file_fn = catia_sys_acl_delete_def_file,
1055         .getxattr_fn = catia_getxattr,
1056         .listxattr_fn = catia_listxattr,
1057         .removexattr_fn = catia_removexattr,
1058         .setxattr_fn = catia_setxattr,
1059 };
1060
1061 static_decl_vfs;
1062 NTSTATUS vfs_catia_init(void)
1063 {
1064         NTSTATUS ret;
1065
1066         ret = smb_register_vfs(SMB_VFS_INTERFACE_VERSION, "catia",
1067                                 &vfs_catia_fns);
1068         if (!NT_STATUS_IS_OK(ret))
1069                 return ret;
1070
1071         vfs_catia_debug_level = debug_add_class("catia");
1072         if (vfs_catia_debug_level == -1) {
1073                 vfs_catia_debug_level = DBGC_VFS;
1074                 DEBUG(0, ("vfs_catia: Couldn't register custom debugging "
1075                           "class!\n"));
1076         } else {
1077                 DEBUG(10, ("vfs_catia: Debug class number of "
1078                            "'catia': %d\n", vfs_catia_debug_level));
1079         }
1080
1081         return ret;
1082
1083 }