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 "system/filesys.h"
22 #include "smbd/smbd.h"
23 #include "nfs4_acls.h"
24 #include "vfs_aixacl_util.h"
27 #define DBGC_CLASS DBGC_VFS
29 #define AIXACL2_MODULE_NAME "aixacl2"
31 typedef union aixjfs2_acl_t
{
32 nfs4_acl_int_t jfs2_acl
[1];
33 aixc_acl_t aixc_acl
[1];
36 static int32_t aixacl2_getlen(AIXJFS2_ACL_T
*acl
, acl_type_t
*type
)
40 if(type
->u64
== ACL_NFS4
) {
41 len
= acl
->jfs2_acl
[0].aclLength
;
44 if(type
->u64
== ACL_AIXC
) {
45 len
= acl
->aixc_acl
[0].acl_len
;
47 DEBUG(0,("aixacl2_getlen:unknown type:%d\n",type
->u64
));
51 DEBUG(10,("aixacl2_getlen:%d\n",len
));
55 static AIXJFS2_ACL_T
*aixjfs2_getacl_alloc(const char *fname
, acl_type_t
*type
)
64 mem_ctx
= talloc_tos();
65 acl
= (AIXJFS2_ACL_T
*)TALLOC_SIZE(mem_ctx
, len
);
71 if(type
->u64
== ACL_ANY
) {
72 ctl_flag
= ctl_flag
| GET_ACLINFO_ONLY
;
75 ret
= aclx_get((char *)fname
, ctl_flag
, type
, acl
, &len
, &mode
);
76 if ((ret
!= 0) && (errno
== ENOSPC
)) {
77 len
= aixacl2_getlen(acl
, type
) + sizeof(AIXJFS2_ACL_T
);
78 DEBUG(10,("aixjfs2_getacl_alloc - acl_len:%d\n",len
));
80 acl
= (AIXJFS2_ACL_T
*)TALLOC_SIZE(mem_ctx
, len
);
86 ret
= aclx_get((char *)fname
, ctl_flag
, type
, acl
, &len
, &mode
);
89 DEBUG(8, ("aclx_get failed with %s\n", strerror(errno
)));
96 static bool aixjfs2_get_nfs4_acl(TALLOC_CTX
*mem_ctx
, const char *name
,
97 struct SMB4ACL_T
**ppacl
, bool *pretryPosix
)
101 AIXJFS2_ACL_T
*pacl
= NULL
;
102 nfs4_acl_int_t
*jfs2_acl
= NULL
;
103 nfs4_ace_int_t
*jfs2_ace
= NULL
;
106 DEBUG(10,("jfs2 get_nt_acl invoked for %s\n", name
));
108 memset(&type
, 0, sizeof(acl_type_t
));
111 pacl
= aixjfs2_getacl_alloc(name
, &type
);
113 DEBUG(9, ("aixjfs2_getacl_alloc failed for %s with %s\n",
114 name
, strerror(errno
)));
120 jfs2_acl
= &pacl
->jfs2_acl
[0];
121 DEBUG(10, ("len: %d, version: %d, nace: %d, type: 0x%x\n",
122 jfs2_acl
->aclLength
, jfs2_acl
->aclVersion
, jfs2_acl
->aclEntryN
, type
.u64
));
124 *ppacl
= smb_create_smb4acl(mem_ctx
);
128 jfs2_ace
= &jfs2_acl
->aclEntry
[0];
129 for (i
=0; i
<jfs2_acl
->aclEntryN
; i
++) {
130 SMB_ACE4PROP_T aceprop
;
132 DEBUG(10, ("type: %d, iflags: %x, flags: %x, mask: %x, "
133 "who: %d, aclLen: %d\n", jfs2_ace
->aceType
, jfs2_ace
->flags
,
134 jfs2_ace
->aceFlags
, jfs2_ace
->aceMask
, jfs2_ace
->aceWho
.id
, jfs2_ace
->entryLen
));
136 aceprop
.aceType
= jfs2_ace
->aceType
;
137 aceprop
.aceFlags
= jfs2_ace
->aceFlags
;
138 aceprop
.aceMask
= jfs2_ace
->aceMask
;
139 aceprop
.flags
= (jfs2_ace
->flags
&ACE4_ID_SPECIAL
) ? SMB_ACE4_ID_SPECIAL
: 0;
141 /* don't care it's real content is only 16 or 32 bit */
142 aceprop
.who
.id
= jfs2_ace
->aceWho
.id
;
144 if (smb_add_ace4(*ppacl
, &aceprop
)==NULL
)
147 /* iterate to the next jfs2 ace */
148 jfs2_ace
= (nfs4_ace_int_t
*)(((char *)jfs2_ace
) + jfs2_ace
->entryLen
);
151 DEBUG(10,("jfs2 get_nt_acl finished successfully\n"));
156 static NTSTATUS
aixjfs2_fget_nt_acl(vfs_handle_struct
*handle
,
157 files_struct
*fsp
, uint32_t security_info
,
159 struct security_descriptor
**ppdesc
)
162 struct SMB4ACL_T
*pacl
= NULL
;
164 bool retryPosix
= False
;
165 TALLOC_CTX
*frame
= talloc_stackframe();
168 result
= aixjfs2_get_nfs4_acl(frame
, fsp
->fsp_name
->base_name
, &pacl
,
173 DEBUG(10, ("retrying with posix acl...\n"));
174 return posix_fget_nt_acl(fsp
, security_info
,
179 return NT_STATUS_ACCESS_DENIED
;
182 status
= smb_fget_nt_acl_nfs4(fsp
, NULL
, security_info
, ppdesc
,
188 static NTSTATUS
aixjfs2_get_nt_acl(vfs_handle_struct
*handle
,
189 const struct smb_filename
*smb_fname
,
190 uint32_t security_info
,
192 struct security_descriptor
**ppdesc
)
194 struct SMB4ACL_T
*pacl
= NULL
;
196 bool retryPosix
= False
;
199 result
= aixjfs2_get_nfs4_acl(mem_ctx
,
200 smb_fname
->base_name
,
205 DEBUG(10, ("retrying with posix acl...\n"));
206 return posix_get_nt_acl(handle
->conn
,
213 return NT_STATUS_ACCESS_DENIED
;
215 return smb_get_nt_acl_nfs4(handle
->conn
,
224 static int aixjfs2_sys_acl_blob_get_file(vfs_handle_struct
*handle
, const char *path_p
, TALLOC_CTX
*mem_ctx
, char **blob_description
, DATA_BLOB
*blob
)
226 struct SMB4ACL_T
*pacl
= NULL
;
228 bool retryPosix
= False
;
230 result
= aixjfs2_get_nfs4_acl(mem_ctx
, path_p
, &pacl
, &retryPosix
);
233 return posix_sys_acl_blob_get_file(handle
, path_p
, mem_ctx
,
234 blob_description
, blob
);
236 /* Now way to linarlise NFS4 ACLs at the moment, but the NT ACL is pretty close in this case */
241 static int aixjfs2_sys_acl_blob_get_fd(vfs_handle_struct
*handle
, files_struct
*fsp
, TALLOC_CTX
*mem_ctx
, char **blob_description
, DATA_BLOB
*blob
)
243 struct SMB4ACL_T
*pacl
= NULL
;
245 bool retryPosix
= False
;
247 result
= aixjfs2_get_nfs4_acl(mem_ctx
, fsp
->fsp_name
->base_name
, &pacl
,
251 return posix_sys_acl_blob_get_fd(handle
, fsp
, mem_ctx
, blob_description
, blob
);
254 /* Now way to linarlise NFS4 ACLs at the moment, but the NT ACL is pretty close in this case */
259 static SMB_ACL_T
aixjfs2_get_posix_acl(const char *path
, acl_type_t type
, TALLOC_CTX
*mem_ctx
)
263 SMB_ACL_T result
= NULL
;
266 acl
= aixjfs2_getacl_alloc(path
, &type
);
269 DEBUG(10, ("aixjfs2_getacl failed for %s with %s\n",
270 path
, strerror(errno
)));
277 pacl
= &acl
->aixc_acl
[0];
278 DEBUG(10, ("len: %d, mode: %d\n",
279 pacl
->acl_len
, pacl
->acl_mode
));
281 result
= aixacl_to_smbacl(pacl
, mem_ctx
);
282 if (result
== NULL
) {
293 SMB_ACL_T
aixjfs2_sys_acl_get_file(vfs_handle_struct
*handle
,
298 acl_type_t aixjfs2_type
;
301 case SMB_ACL_TYPE_ACCESS
:
302 aixjfs2_type
.u64
= ACL_AIXC
;
304 case SMB_ACL_TYPE_DEFAULT
:
305 DEBUG(0, ("Got AIX JFS2 unsupported type: %d\n", type
));
308 DEBUG(0, ("Got invalid type: %d\n", type
));
309 smb_panic("exiting");
312 return aixjfs2_get_posix_acl(path_p
, aixjfs2_type
, mem_ctx
);
315 SMB_ACL_T
aixjfs2_sys_acl_get_fd(vfs_handle_struct
*handle
,
316 files_struct
*fsp
, TALLOC_CTX
*mem_ctx
)
318 acl_type_t aixjfs2_type
;
319 aixjfs2_type
.u64
= ACL_AIXC
;
321 return aixjfs2_get_posix_acl(fsp
->fsp_name
->base_name
,
322 aixjfs2_type
, mem_ctx
);
326 * Test whether we have that aclType support on the given path
328 static int aixjfs2_query_acl_support(
331 acl_type_t
*pacl_type_info
334 acl_types_list_t acl_type_list
;
335 size_t acl_type_list_len
= sizeof(acl_types_list_t
);
338 memset(&acl_type_list
, 0, sizeof(acl_type_list
));
340 if (aclx_gettypes(filepath
, &acl_type_list
, &acl_type_list_len
)) {
341 DEBUG(2, ("aclx_gettypes failed with error %s for %s\n",
342 strerror(errno
), filepath
));
346 for(i
=0; i
<acl_type_list
.num_entries
; i
++) {
347 if (acl_type_list
.entries
[i
].u64
==aclType
) {
348 memcpy(pacl_type_info
, acl_type_list
.entries
+ i
, sizeof(acl_type_t
));
349 DEBUG(10, ("found %s ACL support for %s\n",
350 pacl_type_info
->acl_type
, filepath
));
355 return 1; /* haven't found that ACL type. */
358 static bool aixjfs2_process_smbacl(vfs_handle_struct
*handle
,
360 struct SMB4ACL_T
*smbacl
)
362 struct SMB4ACE_T
*smbace
;
364 nfs4_acl_int_t
*jfs2acl
;
366 uint32_t aclLen
, naces
;
370 DEBUG(10, ("jfs2_process_smbacl invoked on %s\n", fsp_str_dbg(fsp
)));
372 /* no need to be freed which is alloced with mem_ctx */
373 mem_ctx
= talloc_tos();
375 entryLen
= sizeof(nfs4_ace_int_t
);
377 entryLen
= entryLen
+ 4 - (entryLen
%4);
379 naces
= smb_get_naces(smbacl
);
380 aclLen
= ACL_V4_SIZ
+ naces
* entryLen
;
381 jfs2acl
= (nfs4_acl_int_t
*)TALLOC_SIZE(mem_ctx
, aclLen
);
383 DEBUG(0, ("TALLOC_SIZE failed\n"));
388 jfs2acl
->aclLength
= ACL_V4_SIZ
;
389 jfs2acl
->aclVersion
= NFS4_ACL_INT_STRUCT_VERSION
;
390 jfs2acl
->aclEntryN
= 0;
392 for(smbace
= smb_first_ace4(smbacl
); smbace
!=NULL
; smbace
= smb_next_ace4(smbace
))
394 SMB_ACE4PROP_T
*aceprop
= smb_get_ace4(smbace
);
395 nfs4_ace_int_t
*jfs2_ace
= (nfs4_ace_int_t
*)(((char *)jfs2acl
) + jfs2acl
->aclLength
);
397 memset(jfs2_ace
, 0, entryLen
);
398 jfs2_ace
->entryLen
= entryLen
; /* won't store textual "who" */
399 jfs2_ace
->aceType
= aceprop
->aceType
; /* only ACCES|DENY supported by jfs2 */
400 jfs2_ace
->aceFlags
= aceprop
->aceFlags
;
401 jfs2_ace
->aceMask
= aceprop
->aceMask
;
402 jfs2_ace
->flags
= (aceprop
->flags
&SMB_ACE4_ID_SPECIAL
) ? ACE4_ID_SPECIAL
: 0;
404 /* don't care it's real content is only 16 or 32 bit */
405 jfs2_ace
->aceWho
.id
= aceprop
->who
.id
;
407 /* iterate to the next jfs2 ace */
408 jfs2acl
->aclLength
+= jfs2_ace
->entryLen
;
409 jfs2acl
->aclEntryN
++;
411 SMB_ASSERT(jfs2acl
->aclEntryN
==naces
);
413 /* Don't query it (again) */
414 memset(&acltype
, 0, sizeof(acl_type_t
));
415 acltype
.u64
= ACL_NFS4
;
417 /* won't set S_ISUID - the only one JFS2/NFS4 accepts */
419 fsp
->fsp_name
->base_name
,
420 SET_ACL
, /* set only the ACL, not mode bits */
421 acltype
, /* not a pointer !!! */
424 0 /* don't set here mode bits */
427 DEBUG(8, ("aclx_put failed with %s\n", strerror(errno
)));
431 DEBUG(10, ("jfs2_process_smbacl succeeded.\n"));
435 static NTSTATUS
aixjfs2_set_nt_acl_common(vfs_handle_struct
*handle
, files_struct
*fsp
, uint32_t security_info_sent
, const struct security_descriptor
*psd
)
437 acl_type_t acl_type_info
;
438 NTSTATUS result
= NT_STATUS_ACCESS_DENIED
;
441 rc
= aixjfs2_query_acl_support(
442 fsp
->fsp_name
->base_name
,
448 result
= smb_set_nt_acl_nfs4(handle
,
449 fsp
, NULL
, security_info_sent
, psd
,
450 aixjfs2_process_smbacl
);
451 } else if (rc
==1) { /* assume POSIX ACL - by default... */
452 result
= set_nt_acl(fsp
, security_info_sent
, psd
);
454 result
= map_nt_error_from_unix(errno
); /* query failed */
459 NTSTATUS
aixjfs2_fset_nt_acl(vfs_handle_struct
*handle
, files_struct
*fsp
, uint32_t security_info_sent
, const struct security_descriptor
*psd
)
461 return aixjfs2_set_nt_acl_common(handle
, fsp
, security_info_sent
, psd
);
464 int aixjfs2_sys_acl_set_file(vfs_handle_struct
*handle
,
469 struct acl
*acl_aixc
;
470 acl_type_t acl_type_info
;
473 DEBUG(10, ("aixjfs2_sys_acl_set_file invoked for %s", name
));
475 rc
= aixjfs2_query_acl_support((char *)name
, ACL_AIXC
, &acl_type_info
);
477 DEBUG(8, ("jfs2_set_nt_acl: AIXC support not found\n"));
481 acl_aixc
= aixacl_smb_to_aixacl(type
, theacl
);
487 SET_ACL
, /* set only the ACL, not mode bits */
494 DEBUG(2, ("aclx_put failed with %s for %s\n",
495 strerror(errno
), name
));
502 int aixjfs2_sys_acl_set_fd(vfs_handle_struct
*handle
,
506 struct acl
*acl_aixc
;
507 acl_type_t acl_type_info
;
510 DEBUG(10, ("aixjfs2_sys_acl_set_fd invoked for %s", fsp_str_dbg(fsp
)));
512 rc
= aixjfs2_query_acl_support(fsp
->fsp_name
->base_name
, ACL_AIXC
,
515 DEBUG(8, ("jfs2_set_nt_acl: AIXC support not found\n"));
519 acl_aixc
= aixacl_smb_to_aixacl(SMB_ACL_TYPE_ACCESS
, theacl
);
525 SET_ACL
, /* set only the ACL, not mode bits */
532 DEBUG(2, ("aclx_fput failed with %s for %s\n",
533 strerror(errno
), fsp_str_dbg(fsp
)));
540 int aixjfs2_sys_acl_delete_def_file(vfs_handle_struct
*handle
,
541 const struct smb_filename
*smb_fname
)
543 /* Not available under AIXC ACL */
544 /* Don't report here any error otherwise */
545 /* upper layer will break the normal execution */
549 static struct vfs_fn_pointers vfs_aixacl2_fns
= {
550 .fget_nt_acl_fn
= aixjfs2_fget_nt_acl
,
551 .get_nt_acl_fn
= aixjfs2_get_nt_acl
,
552 .fset_nt_acl_fn
= aixjfs2_fset_nt_acl
,
553 .sys_acl_get_file_fn
= aixjfs2_sys_acl_get_file
,
554 .sys_acl_get_fd_fn
= aixjfs2_sys_acl_get_fd
,
555 .sys_acl_blob_get_file_fn
= aixjfs2_sys_acl_blob_get_file
,
556 .sys_acl_blob_get_fd_fn
= aixjfs2_sys_acl_blob_get_fd
,
557 .sys_acl_set_file_fn
= aixjfs2_sys_acl_set_file
,
558 .sys_acl_set_fd_fn
= aixjfs2_sys_acl_set_fd
,
559 .sys_acl_delete_def_file_fn
= aixjfs2_sys_acl_delete_def_file
562 NTSTATUS
vfs_aixacl2_init(TALLOC_CTX
*);
563 NTSTATUS
vfs_aixacl2_init(TALLOC_CTX
*ctx
)
565 return smb_register_vfs(SMB_VFS_INTERFACE_VERSION
, AIXACL2_MODULE_NAME
,