r25399: Excise uint - > uint32 (where appropriate) or unsigned int.
[jra/samba/.git] / source3 / modules / vfs_aixacl.c
1 /*
2    Unix SMB/Netbios implementation.
3    VFS module to get and set posix acls
4    Copyright (C) Jim McDonough <jmcd@us.ibm.com> 2006
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 3 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, see <http://www.gnu.org/licenses/>.
18 */
19
20 #include "includes.h"
21
22 extern SMB_ACL_T aixacl_to_smbacl( struct acl *file_acl);
23 extern struct acl *aixacl_smb_to_aixacl(SMB_ACL_TYPE_T acltype, SMB_ACL_T theacl);
24
25 SMB_ACL_T aixacl_sys_acl_get_file(vfs_handle_struct *handle,
26                                     const char *path_p,
27                                     SMB_ACL_TYPE_T type)
28 {
29         struct acl *file_acl = (struct acl *)NULL;
30         struct smb_acl_t *result = (struct smb_acl_t *)NULL;
31         
32         int rc = 0;
33         uid_t user_id;
34
35         /* AIX has no DEFAULT */
36         if  ( type == SMB_ACL_TYPE_DEFAULT )
37                 return NULL;
38
39         /* Get the acl using statacl */
40  
41         DEBUG(10,("Entering AIX sys_acl_get_file\n"));
42         DEBUG(10,("path_p is %s\n",path_p));
43
44         file_acl = (struct acl *)SMB_MALLOC(BUFSIZ);
45  
46         if(file_acl == NULL) {
47                 errno=ENOMEM;
48                 DEBUG(0,("Error in AIX sys_acl_get_file: %d\n",errno));
49                 return(NULL);
50         }
51
52         memset(file_acl,0,BUFSIZ);
53
54         rc = statacl((char *)path_p,0,file_acl,BUFSIZ);
55         if( (rc == -1) && (errno == ENOSPC)) {
56                 struct acl *new_acl = SMB_MALLOC(file_acl->acl_len + sizeof(struct acl));
57                 if( new_acl == NULL) {
58                         SAFE_FREE(file_acl);
59                         errno = ENOMEM;
60                         return NULL;
61                 }
62                 file_acl = new_acl;
63                 rc = statacl((char *)path_p,0,file_acl,file_acl->acl_len+sizeof(struct acl));
64                 if( rc == -1) {
65                         DEBUG(0,("statacl returned %d with errno %d\n",rc,errno));
66                         SAFE_FREE(file_acl);
67                         return(NULL);
68                 }
69         }
70
71         DEBUG(10,("Got facl and returned it\n"));
72
73         
74         result = aixacl_to_smbacl(file_acl);
75         SAFE_FREE(file_acl);
76         return result;
77         
78         /*errno = ENOTSUP;
79         return NULL;*/
80 }
81
82 SMB_ACL_T aixacl_sys_acl_get_fd(vfs_handle_struct *handle,
83                                   files_struct *fsp,
84                                   int fd)
85 {
86
87         struct acl *file_acl = (struct acl *)NULL;
88         struct smb_acl_t *result = (struct smb_acl_t *)NULL;
89         
90         int rc = 0;
91         uid_t user_id;
92
93         /* Get the acl using fstatacl */
94    
95         DEBUG(10,("Entering AIX sys_acl_get_fd\n"));
96         DEBUG(10,("fd is %d\n",fd));
97         file_acl = (struct acl *)SMB_MALLOC(BUFSIZ);
98
99         if(file_acl == NULL) {
100                 errno=ENOMEM;
101                 DEBUG(0,("Error in AIX sys_acl_get_fd is %d\n",errno));
102                 return(NULL);
103         }
104
105         memset(file_acl,0,BUFSIZ);
106
107         rc = fstatacl(fd,0,file_acl,BUFSIZ);
108         if( (rc == -1) && (errno == ENOSPC)) {
109                 struct acl *new_acl = SMB_MALLOC(file_acl->acl_len + sizeof(struct acl));
110                 if( new_acl == NULL) {
111                         SAFE_FREE(file_acl);
112                         errno = ENOMEM;
113                         return NULL;
114                 }
115                 file_acl = new_acl;
116                 rc = fstatacl(fd,0,file_acl,file_acl->acl_len + sizeof(struct acl));
117                 if( rc == -1) {
118                         DEBUG(0,("fstatacl returned %d with errno %d\n",rc,errno));
119                         SAFE_FREE(file_acl);
120                         return(NULL);
121                 }
122         }
123
124         DEBUG(10,("Got facl and returned it\n"));
125
126         result = aixacl_to_smbacl(file_acl);
127         SAFE_FREE(file_acl);
128         return result;
129         
130         /*errno = ENOTSUP;
131         return NULL;*/
132 }
133
134 int aixacl_sys_acl_set_file(vfs_handle_struct *handle,
135                               const char *name,
136                               SMB_ACL_TYPE_T type,
137                               SMB_ACL_T theacl)
138 {
139         struct acl *file_acl = NULL;
140         unsigned int rc;
141         
142         file_acl = aixacl_smb_to_aixacl(type, theacl);
143         if (!file_acl)
144                 return -1;
145
146         rc = chacl((char *)name,file_acl,file_acl->acl_len);
147         DEBUG(10,("errno is %d\n",errno));
148         DEBUG(10,("return code is %d\n",rc));
149         SAFE_FREE(file_acl);
150         DEBUG(10,("Exiting the aixacl_sys_acl_set_file\n"));
151
152         return rc;
153 }
154
155 int aixacl_sys_acl_set_fd(vfs_handle_struct *handle,
156                             files_struct *fsp,
157                             int fd, SMB_ACL_T theacl)
158 {
159         struct acl *file_acl = NULL;
160         unsigned int rc;
161
162         file_acl = aixacl_smb_to_aixacl(SMB_ACL_TYPE_ACCESS, theacl);
163         if (!file_acl)
164                 return -1;
165
166         rc = fchacl(fd,file_acl,file_acl->acl_len);
167         DEBUG(10,("errno is %d\n",errno));
168         DEBUG(10,("return code is %d\n",rc));
169         SAFE_FREE(file_acl);
170         DEBUG(10,("Exiting aixacl_sys_acl_set_fd\n"));
171
172         return rc;
173 }
174
175 int aixacl_sys_acl_delete_def_file(vfs_handle_struct *handle,
176                                      const char *path)
177 {
178         return 0; /* otherwise you can't set acl at upper level */
179 }
180
181 /* VFS operations structure */
182
183 static vfs_op_tuple aixacl_op_tuples[] = {
184         /* Disk operations */
185   {SMB_VFS_OP(aixacl_sys_acl_get_file),
186    SMB_VFS_OP_SYS_ACL_GET_FILE,
187    SMB_VFS_LAYER_TRANSPARENT},
188
189   {SMB_VFS_OP(aixacl_sys_acl_get_fd),
190    SMB_VFS_OP_SYS_ACL_GET_FD,
191    SMB_VFS_LAYER_TRANSPARENT},
192
193   {SMB_VFS_OP(aixacl_sys_acl_set_file),
194    SMB_VFS_OP_SYS_ACL_SET_FILE,
195    SMB_VFS_LAYER_TRANSPARENT},
196
197   {SMB_VFS_OP(aixacl_sys_acl_set_fd),
198    SMB_VFS_OP_SYS_ACL_SET_FD,
199    SMB_VFS_LAYER_TRANSPARENT},
200
201   {SMB_VFS_OP(aixacl_sys_acl_delete_def_file),
202    SMB_VFS_OP_SYS_ACL_DELETE_DEF_FILE,
203    SMB_VFS_LAYER_TRANSPARENT},
204
205   {SMB_VFS_OP(NULL),
206    SMB_VFS_OP_NOOP,
207    SMB_VFS_LAYER_NOOP}
208 };
209
210 NTSTATUS vfs_aixacl_init(void);
211 NTSTATUS vfs_aixacl_init(void)
212 {
213         return smb_register_vfs(SMB_VFS_INTERFACE_VERSION, "aixacl",
214                                 aixacl_op_tuples);
215 }