2 * Convert JFS2 NFS4/AIXC acls to NT acls and vice versa.
4 * Copyright (C) Volker Lendecke, 2006
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.
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.
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/>.
21 #include "nfs4_acls.h"
24 #define DBGC_CLASS DBGC_VFS
26 #define AIXACL2_MODULE_NAME "aixacl2"
28 extern int try_chown(connection_struct
*conn
, const char *fname
, uid_t uid
, gid_t gid
);
29 extern NTSTATUS
unpack_nt_owners(int snum
, uid_t
*puser
, gid_t
*pgrp
,
30 uint32 security_info_sent
, SEC_DESC
*psd
);
32 extern SMB_ACL_T
aixacl_to_smbacl( struct acl
*file_acl
);
33 extern struct acl
*aixacl_smb_to_aixacl(SMB_ACL_TYPE_T acltype
, SMB_ACL_T theacl
);
35 typedef union aixjfs2_acl_t
{
36 nfs4_acl_int_t jfs2_acl
[1];
37 aixc_acl_t aixc_acl
[1];
40 static int32_t aixacl2_getlen(AIXJFS2_ACL_T
*acl
, acl_type_t
*type
)
44 if(type
->u64
== ACL_NFS4
) {
45 len
= acl
->jfs2_acl
[0].aclLength
;
48 if(type
->u64
== ACL_AIXC
) {
49 len
= acl
->aixc_acl
[0].acl_len
;
51 DEBUG(0,("aixacl2_getlen:unknown type:%d\n",type
->u64
));
55 DEBUG(10,("aixacl2_getlen:%d\n",len
));
59 static AIXJFS2_ACL_T
*aixjfs2_getacl_alloc(const char *fname
, acl_type_t
*type
)
68 mem_ctx
= talloc_tos();
69 acl
= (AIXJFS2_ACL_T
*)TALLOC_SIZE(mem_ctx
, len
);
75 if(type
->u64
== ACL_ANY
) {
76 ctl_flag
= ctl_flag
| GET_ACLINFO_ONLY
;
79 ret
= aclx_get((char *)fname
, ctl_flag
, type
, acl
, &len
, &mode
);
80 if ((ret
!= 0) && (errno
== ENOSPC
)) {
81 len
= aixacl2_getlen(acl
, type
) + sizeof(AIXJFS2_ACL_T
);
82 DEBUG(10,("aixjfs2_getacl_alloc - acl_len:%d\n",len
));
84 acl
= (AIXJFS2_ACL_T
*)TALLOC_SIZE(mem_ctx
, len
);
90 ret
= aclx_get((char *)fname
, ctl_flag
, type
, acl
, &len
, &mode
);
93 DEBUG(8, ("aclx_get failed with %s\n", strerror(errno
)));
100 static bool aixjfs2_get_nfs4_acl(const char *name
,
101 SMB4ACL_T
**ppacl
, bool *pretryPosix
)
105 AIXJFS2_ACL_T
*pacl
= NULL
;
106 nfs4_acl_int_t
*jfs2_acl
= NULL
;
107 nfs4_ace_int_t
*jfs2_ace
= NULL
;
110 DEBUG(10,("jfs2 get_nt_acl invoked for %s\n", name
));
112 memset(&type
, 0, sizeof(acl_type_t
));
115 pacl
= aixjfs2_getacl_alloc(name
, &type
);
117 DEBUG(9, ("aixjfs2_getacl_alloc failed for %s with %s\n",
118 name
, strerror(errno
)));
124 jfs2_acl
= &pacl
->jfs2_acl
[0];
125 DEBUG(10, ("len: %d, version: %d, nace: %d, type: 0x%x\n",
126 jfs2_acl
->aclLength
, jfs2_acl
->aclVersion
, jfs2_acl
->aclEntryN
, type
.u64
));
128 *ppacl
= smb_create_smb4acl();
132 jfs2_ace
= &jfs2_acl
->aclEntry
[0];
133 for (i
=0; i
<jfs2_acl
->aclEntryN
; i
++) {
134 SMB_ACE4PROP_T aceprop
;
136 DEBUG(10, ("type: %d, iflags: %x, flags: %x, mask: %x, "
137 "who: %d, aclLen: %d\n", jfs2_ace
->aceType
, jfs2_ace
->flags
,
138 jfs2_ace
->aceFlags
, jfs2_ace
->aceMask
, jfs2_ace
->aceWho
.id
, jfs2_ace
->entryLen
));
140 aceprop
.aceType
= jfs2_ace
->aceType
;
141 aceprop
.aceFlags
= jfs2_ace
->aceFlags
;
142 aceprop
.aceMask
= jfs2_ace
->aceMask
;
143 aceprop
.flags
= (jfs2_ace
->flags
&ACE4_ID_SPECIAL
) ? SMB_ACE4_ID_SPECIAL
: 0;
145 /* don't care it's real content is only 16 or 32 bit */
146 aceprop
.who
.id
= jfs2_ace
->aceWho
.id
;
148 if (smb_add_ace4(*ppacl
, &aceprop
)==NULL
)
151 /* iterate to the next jfs2 ace */
152 jfs2_ace
= (nfs4_ace_int_t
*)(((char *)jfs2_ace
) + jfs2_ace
->entryLen
);
155 DEBUG(10,("jfs2 get_nt_acl finished successfully\n"));
160 static NTSTATUS
aixjfs2_fget_nt_acl(vfs_handle_struct
*handle
,
161 files_struct
*fsp
, uint32 security_info
,
164 SMB4ACL_T
*pacl
= NULL
;
166 bool retryPosix
= False
;
169 result
= aixjfs2_get_nfs4_acl(fsp
->fsp_name
, &pacl
, &retryPosix
);
172 DEBUG(10, ("retrying with posix acl...\n"));
173 return posix_fget_nt_acl(fsp
, security_info
, ppdesc
);
176 return NT_STATUS_ACCESS_DENIED
;
178 return smb_fget_nt_acl_nfs4(fsp
, security_info
, ppdesc
, pacl
);
181 static NTSTATUS
aixjfs2_get_nt_acl(vfs_handle_struct
*handle
,
182 files_struct
*fsp
, const char *name
,
183 uint32 security_info
, SEC_DESC
**ppdesc
)
185 SMB4ACL_T
*pacl
= NULL
;
187 bool retryPosix
= False
;
190 result
= aixjfs2_get_nfs4_acl(name
, &pacl
, &retryPosix
);
193 DEBUG(10, ("retrying with posix acl...\n"));
194 return posix_get_nt_acl(handle
->conn
, name
, security_info
,
198 return NT_STATUS_ACCESS_DENIED
;
200 return smb_get_nt_acl_nfs4(handle
->conn
, name
, security_info
, ppdesc
,
204 static SMB_ACL_T
aixjfs2_get_posix_acl(const char *path
, acl_type_t type
)
208 SMB_ACL_T result
= NULL
;
211 acl
= aixjfs2_getacl_alloc(path
, &type
);
214 DEBUG(10, ("aixjfs2_getacl failed for %s with %s\n",
215 path
, strerror(errno
)));
222 pacl
= &acl
->aixc_acl
[0];
223 DEBUG(10, ("len: %d, mode: %d\n",
224 pacl
->acl_len
, pacl
->acl_mode
));
226 result
= aixacl_to_smbacl(pacl
);
227 if (result
== NULL
) {
238 SMB_ACL_T
aixjfs2_sys_acl_get_file(vfs_handle_struct
*handle
,
242 acl_type_t aixjfs2_type
;
245 case SMB_ACL_TYPE_ACCESS
:
246 aixjfs2_type
.u64
= ACL_AIXC
;
248 case SMB_ACL_TYPE_DEFAULT
:
249 DEBUG(0, ("Got AIX JFS2 unsupported type: %d\n", type
));
252 DEBUG(0, ("Got invalid type: %d\n", type
));
253 smb_panic("exiting");
256 return aixjfs2_get_posix_acl(path_p
, aixjfs2_type
);
259 SMB_ACL_T
aixjfs2_sys_acl_get_fd(vfs_handle_struct
*handle
,
262 acl_type_t aixjfs2_type
;
263 aixjfs2_type
.u64
= ACL_AIXC
;
265 return aixjfs2_get_posix_acl(fsp
->fsp_name
, aixjfs2_type
);
269 * Test whether we have that aclType support on the given path
271 static int aixjfs2_query_acl_support(
274 acl_type_t
*pacl_type_info
277 acl_types_list_t acl_type_list
;
278 size_t acl_type_list_len
= sizeof(acl_types_list_t
);
281 memset(&acl_type_list
, 0, sizeof(acl_type_list
));
283 if (aclx_gettypes(filepath
, &acl_type_list
, &acl_type_list_len
)) {
284 DEBUG(2, ("aclx_gettypes failed with error %s for %s\n",
285 strerror(errno
), filepath
));
289 for(i
=0; i
<acl_type_list
.num_entries
; i
++) {
290 if (acl_type_list
.entries
[i
].u64
==aclType
) {
291 memcpy(pacl_type_info
, acl_type_list
.entries
+ i
, sizeof(acl_type_t
));
292 DEBUG(10, ("found %s ACL support for %s\n",
293 pacl_type_info
->acl_type
, filepath
));
298 return 1; /* haven't found that ACL type. */
301 static bool aixjfs2_process_smbacl(files_struct
*fsp
, SMB4ACL_T
*smbacl
)
305 nfs4_acl_int_t
*jfs2acl
;
307 uint32 aclLen
, naces
;
311 DEBUG(10, ("jfs2_process_smbacl invoked on %s\n", fsp
->fsp_name
));
313 /* no need to be freed which is alloced with mem_ctx */
314 mem_ctx
= talloc_tos();
316 entryLen
= sizeof(nfs4_ace_int_t
);
318 entryLen
= entryLen
+ 4 - (entryLen
%4);
320 naces
= smb_get_naces(smbacl
);
321 aclLen
= ACL_V4_SIZ
+ naces
* entryLen
;
322 jfs2acl
= (nfs4_acl_int_t
*)TALLOC_SIZE(mem_ctx
, aclLen
);
324 DEBUG(0, ("TALLOC_SIZE failed\n"));
329 jfs2acl
->aclLength
= ACL_V4_SIZ
;
330 jfs2acl
->aclVersion
= NFS4_ACL_INT_STRUCT_VERSION
;
331 jfs2acl
->aclEntryN
= 0;
333 for(smbace
= smb_first_ace4(smbacl
); smbace
!=NULL
; smbace
= smb_next_ace4(smbace
))
335 SMB_ACE4PROP_T
*aceprop
= smb_get_ace4(smbace
);
336 nfs4_ace_int_t
*jfs2_ace
= (nfs4_ace_int_t
*)(((char *)jfs2acl
) + jfs2acl
->aclLength
);
338 memset(jfs2_ace
, 0, entryLen
);
339 jfs2_ace
->entryLen
= entryLen
; /* won't store textual "who" */
340 jfs2_ace
->aceType
= aceprop
->aceType
; /* only ACCES|DENY supported by jfs2 */
341 jfs2_ace
->aceFlags
= aceprop
->aceFlags
;
342 jfs2_ace
->aceMask
= aceprop
->aceMask
;
343 jfs2_ace
->flags
= (aceprop
->flags
&SMB_ACE4_ID_SPECIAL
) ? ACE4_ID_SPECIAL
: 0;
345 /* don't care it's real content is only 16 or 32 bit */
346 jfs2_ace
->aceWho
.id
= aceprop
->who
.id
;
348 /* iterate to the next jfs2 ace */
349 jfs2acl
->aclLength
+= jfs2_ace
->entryLen
;
350 jfs2acl
->aclEntryN
++;
352 SMB_ASSERT(jfs2acl
->aclEntryN
==naces
);
354 /* Don't query it (again) */
355 memset(&acltype
, 0, sizeof(acl_type_t
));
356 acltype
.u64
= ACL_NFS4
;
358 /* won't set S_ISUID - the only one JFS2/NFS4 accepts */
361 SET_ACL
, /* set only the ACL, not mode bits */
362 acltype
, /* not a pointer !!! */
365 0 /* don't set here mode bits */
368 DEBUG(8, ("aclx_put failed with %s\n", strerror(errno
)));
372 DEBUG(10, ("jfs2_process_smbacl succeeded.\n"));
376 static NTSTATUS
aixjfs2_set_nt_acl_common(files_struct
*fsp
, uint32 security_info_sent
, SEC_DESC
*psd
)
378 acl_type_t acl_type_info
;
379 NTSTATUS result
= NT_STATUS_ACCESS_DENIED
;
382 rc
= aixjfs2_query_acl_support(
389 result
= smb_set_nt_acl_nfs4(
390 fsp
, security_info_sent
, psd
,
391 aixjfs2_process_smbacl
);
392 } else if (rc
==1) { /* assume POSIX ACL - by default... */
393 result
= set_nt_acl(fsp
, security_info_sent
, psd
);
395 result
= map_nt_error_from_unix(errno
); /* query failed */
400 NTSTATUS
aixjfs2_fset_nt_acl(vfs_handle_struct
*handle
, files_struct
*fsp
, uint32 security_info_sent
, SEC_DESC
*psd
)
402 return aixjfs2_set_nt_acl_common(fsp
, security_info_sent
, psd
);
405 int aixjfs2_sys_acl_set_file(vfs_handle_struct
*handle
,
410 struct acl
*acl_aixc
;
411 acl_type_t acl_type_info
;
414 DEBUG(10, ("aixjfs2_sys_acl_set_file invoked for %s", name
));
416 rc
= aixjfs2_query_acl_support((char *)name
, ACL_AIXC
, &acl_type_info
);
418 DEBUG(8, ("jfs2_set_nt_acl: AIXC support not found\n"));
422 acl_aixc
= aixacl_smb_to_aixacl(type
, theacl
);
428 SET_ACL
, /* set only the ACL, not mode bits */
435 DEBUG(2, ("aclx_put failed with %s for %s\n",
436 strerror(errno
), name
));
443 int aixjfs2_sys_acl_set_fd(vfs_handle_struct
*handle
,
447 struct acl
*acl_aixc
;
448 acl_type_t acl_type_info
;
451 DEBUG(10, ("aixjfs2_sys_acl_set_fd invoked for %s", fsp
->fsp_name
));
453 rc
= aixjfs2_query_acl_support(fsp
->fsp_name
, ACL_AIXC
, &acl_type_info
);
455 DEBUG(8, ("jfs2_set_nt_acl: AIXC support not found\n"));
459 acl_aixc
= aixacl_smb_to_aixacl(SMB_ACL_TYPE_ACCESS
, theacl
);
465 SET_ACL
, /* set only the ACL, not mode bits */
472 DEBUG(2, ("aclx_fput failed with %s for %s\n",
473 strerror(errno
), fsp
->fsp_name
));
480 int aixjfs2_sys_acl_delete_def_file(vfs_handle_struct
*handle
,
483 /* Not available under AIXC ACL */
484 /* Don't report here any error otherwise */
485 /* upper layer will break the normal execution */
490 /* VFS operations structure */
492 static vfs_op_tuple aixjfs2_ops
[] =
494 {SMB_VFS_OP(aixjfs2_fget_nt_acl
),
495 SMB_VFS_OP_FGET_NT_ACL
,
496 SMB_VFS_LAYER_TRANSPARENT
},
498 {SMB_VFS_OP(aixjfs2_get_nt_acl
),
499 SMB_VFS_OP_GET_NT_ACL
,
500 SMB_VFS_LAYER_TRANSPARENT
},
502 {SMB_VFS_OP(aixjfs2_fset_nt_acl
),
503 SMB_VFS_OP_FSET_NT_ACL
,
504 SMB_VFS_LAYER_TRANSPARENT
},
506 {SMB_VFS_OP(aixjfs2_sys_acl_get_file
),
507 SMB_VFS_OP_SYS_ACL_GET_FILE
,
508 SMB_VFS_LAYER_TRANSPARENT
},
510 {SMB_VFS_OP(aixjfs2_sys_acl_get_fd
),
511 SMB_VFS_OP_SYS_ACL_GET_FD
,
512 SMB_VFS_LAYER_TRANSPARENT
},
514 {SMB_VFS_OP(aixjfs2_sys_acl_set_file
),
515 SMB_VFS_OP_SYS_ACL_SET_FILE
,
516 SMB_VFS_LAYER_TRANSPARENT
},
518 {SMB_VFS_OP(aixjfs2_sys_acl_set_fd
),
519 SMB_VFS_OP_SYS_ACL_SET_FD
,
520 SMB_VFS_LAYER_TRANSPARENT
},
522 {SMB_VFS_OP(aixjfs2_sys_acl_delete_def_file
),
523 SMB_VFS_OP_SYS_ACL_DELETE_DEF_FILE
,
524 SMB_VFS_LAYER_TRANSPARENT
},
531 NTSTATUS
vfs_aixacl2_init(void);
532 NTSTATUS
vfs_aixacl2_init(void)
534 return smb_register_vfs(SMB_VFS_INTERFACE_VERSION
, AIXACL2_MODULE_NAME
,