r274: Be somewhat more POSIX compatible
[kai/samba.git] / source4 / lib / registry / reg_backend_dir / reg_backend_dir.c
1 /* 
2    Unix SMB/CIFS implementation.
3    Registry interface
4    Copyright (C) Jelmer Vernooij                                          2004.
5    
6    This program is free software; you can redistribute it and/or modify
7    it under the terms of the GNU General Public License as published by
8    the Free Software Foundation; either version 2 of the License, or
9    (at your option) any later version.
10    
11    This program is distributed in the hope that it will be useful,
12    but WITHOUT ANY WARRANTY; without even the implied warranty of
13    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14    GNU General Public License for more details.
15    
16    You should have received a copy of the GNU General Public License
17    along with this program; if not, write to the Free Software
18    Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
19 */
20
21 #include "includes.h"
22 #include "lib/registry/common/registry.h"
23
24 static WERROR reg_dir_add_key(REG_KEY *parent, const char *name, uint32 access_mask, SEC_DESC *desc, REG_KEY **result)
25 {
26         char *path;
27         int ret;
28         asprintf(&path, "%s%s\\%s", parent->handle->location, reg_key_get_path(parent), name);
29         path = reg_path_win2unix(path);
30         ret = mkdir(path, 0700);
31         SAFE_FREE(path);
32         if(ret == 0)return WERR_OK; /* FIXME */
33         return WERR_INVALID_PARAM;
34 }
35
36 static WERROR reg_dir_del_key(REG_KEY *k)
37 {
38         return (rmdir((char *)k->backend_data) == 0)?WERR_OK:WERR_GENERAL_FAILURE;
39 }
40
41 static WERROR reg_dir_open_key(REG_HANDLE *h, const char *name, REG_KEY **subkey)
42 {
43         DIR *d;
44         char *fullpath;
45         REG_KEY *ret;
46         TALLOC_CTX *mem_ctx = talloc_init("tmp");
47         if(!name) {
48                 DEBUG(0, ("NULL pointer passed as directory name!"));
49                 return WERR_INVALID_PARAM;
50         }
51         fullpath = talloc_asprintf(mem_ctx, "%s%s", h->location, name);
52         fullpath = reg_path_win2unix(fullpath);
53         
54         d = opendir(fullpath);
55         if(!d) {
56                 DEBUG(3,("Unable to open '%s': %s\n", fullpath, strerror(errno)));
57                 talloc_destroy(mem_ctx);
58                 return WERR_BADFILE;
59         }
60         closedir(d);
61         ret = reg_key_new_abs(name, h, fullpath);
62         talloc_steal(mem_ctx, ret->mem_ctx, fullpath);
63         talloc_destroy(mem_ctx);
64         *subkey = ret;
65         return WERR_OK;
66 }
67
68 static WERROR reg_dir_fetch_subkeys(REG_KEY *k, int *count, REG_KEY ***r)
69 {
70         struct dirent *e;
71         int max = 200;
72         char *fullpath = k->backend_data;
73         REG_KEY **ar;
74         DIR *d;
75         (*count) = 0;
76         ar = talloc(k->mem_ctx, sizeof(REG_KEY *) * max);
77
78         d = opendir(fullpath);
79
80         if(!d) return WERR_INVALID_PARAM;
81         
82         while((e = readdir(d))) {
83                 if( strcmp(e->d_name, ".") &&
84                    strcmp(e->d_name, "..")) {
85                         struct stat stbuf;
86                         char *thispath;
87                         
88                         /* Check if file is a directory */
89                         asprintf(&thispath, "%s/%s", fullpath, e->d_name);
90                         stat(thispath, &stbuf);
91
92                         if(S_ISDIR(stbuf.st_mode)) {
93                                 ar[(*count)] = reg_key_new_rel(e->d_name, k, NULL);
94                                 ar[(*count)]->backend_data = talloc_strdup(ar[*count]->mem_ctx, thispath);
95                                 if(ar[(*count)])(*count)++;
96
97                                 if((*count) == max) {
98                                         max+=200;
99                                         ar = realloc(ar, sizeof(REG_KEY *) * max);
100                                 }
101                         }
102
103                         SAFE_FREE(thispath);
104                 }
105         }
106
107         closedir(d);
108
109         *r = ar;
110         return WERR_OK;
111 }
112
113 static WERROR reg_dir_open(REG_HANDLE *h, const char *loc, const char *credentials) {
114         if(!loc) return WERR_INVALID_PARAM;
115         return WERR_OK;
116 }
117
118 static WERROR reg_dir_add_value(REG_KEY *p, const char *name, int type, void *data, int len)
119 {
120         /* FIXME */
121         return WERR_NOT_SUPPORTED;
122 }
123
124 static WERROR reg_dir_del_value(REG_VAL *v)
125 {
126         /* FIXME*/
127         return WERR_NOT_SUPPORTED;
128 }
129
130 static struct registry_ops reg_backend_dir = {
131         .name = "dir",
132         .open_registry = reg_dir_open,
133         .open_key = reg_dir_open_key,
134         .fetch_subkeys = reg_dir_fetch_subkeys,
135         .add_key = reg_dir_add_key,
136         .del_key = reg_dir_del_key,
137         .add_value = reg_dir_add_value,
138         .del_value = reg_dir_del_value,
139 };
140
141 NTSTATUS reg_dir_init(void)
142 {
143         return register_backend("registry", &reg_backend_dir);
144 }