summaryrefslogtreecommitdiff
path: root/source3/modules/vfs_afsacl.c
diff options
context:
space:
mode:
authorVolker Lendecke <vlendec@samba.org>2006-06-20 11:06:09 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 11:18:52 -0500
commit7dad923a49ae93e1d4377427a059e999dbf3f779 (patch)
tree5bb874cf4b68aee209ec2db7909f39d94a980eff /source3/modules/vfs_afsacl.c
parent3c34f6085af1e168a1fe7602ae01ba643a7781bd (diff)
downloadsamba-7dad923a49ae93e1d4377427a059e999dbf3f779.tar.gz
samba-7dad923a49ae93e1d4377427a059e999dbf3f779.tar.bz2
samba-7dad923a49ae93e1d4377427a059e999dbf3f779.zip
r16411: Fix compilation of vfs_afsacl, thanks to Greszler Szilard for trying
(This used to be commit 601643a4608cdccf33277cef8900c4da61712268)
Diffstat (limited to 'source3/modules/vfs_afsacl.c')
-rw-r--r--source3/modules/vfs_afsacl.c54
1 files changed, 31 insertions, 23 deletions
diff --git a/source3/modules/vfs_afsacl.c b/source3/modules/vfs_afsacl.c
index 3794299b9a..53272ca06f 100644
--- a/source3/modules/vfs_afsacl.c
+++ b/source3/modules/vfs_afsacl.c
@@ -140,23 +140,24 @@ static struct afs_ace *new_afs_ace(TALLOC_CTX *mem_ctx,
type = SID_NAME_UNKNOWN;
if (string_to_sid(&sid, name)) {
- fstring user, domain;
+ const char *user, *domain;
/* We have to find the type, look up the SID */
- lookup_sid(&sid, domain, user, &type);
+ lookup_sid(tmp_talloc_ctx(), &sid,
+ &domain, &user, &type);
}
} else {
- fstring domain, uname;
+ const char *domain, *uname;
char *p;
- p = strchr_m(name, lp_winbind_separator());
+ p = strchr_m(name, *lp_winbind_separator());
if (p != NULL) {
*p = '\\';
}
- if (!lookup_name(name, LOOKUP_NAME_FULL,
- domain, uname, &sid, &type)) {
+ if (!lookup_name(tmp_talloc_ctx(), name, LOOKUP_NAME_ALL,
+ &domain, &uname, &sid, &type)) {
DEBUG(10, ("Could not find AFS user %s\n", name));
sid_copy(&sid, &global_sid_NULL);
@@ -711,8 +712,7 @@ static BOOL nt_to_afs_acl(const char *filename,
for (i = 0; i < dacl->num_aces; i++) {
SEC_ACE *ace = &(dacl->ace[i]);
- fstring dom_name;
- fstring name;
+ const char *dom_name, *name;
enum SID_NAME_USE name_type;
char *p;
@@ -730,28 +730,28 @@ static BOOL nt_to_afs_acl(const char *filename,
if (sid_compare(&ace->trustee,
&global_sid_Builtin_Administrators) == 0) {
- fstrcpy(name, "system:administrators");
+ name = "system:administrators";
} else if (sid_compare(&ace->trustee,
&global_sid_World) == 0) {
- fstrcpy(name, "system:anyuser");
+ name = "system:anyuser";
} else if (sid_compare(&ace->trustee,
&global_sid_Authenticated_Users) == 0) {
- fstrcpy(name, "system:authuser");
+ name = "system:authuser";
} else if (sid_compare(&ace->trustee,
&global_sid_Builtin_Backup_Operators)
== 0) {
- fstrcpy(name, "system:backup");
+ name = "system:backup";
} else {
- if (!lookup_sid(&ace->trustee,
- dom_name, name, &name_type)) {
+ if (!lookup_sid(tmp_talloc_ctx(), &ace->trustee,
+ &dom_name, &name, &name_type)) {
DEBUG(1, ("AFSACL: Could not lookup SID %s on file %s\n",
sid_string_static(&ace->trustee), filename));
continue;
@@ -759,18 +759,26 @@ static BOOL nt_to_afs_acl(const char *filename,
if ( (name_type == SID_NAME_USER) ||
(name_type == SID_NAME_DOM_GRP) ||
- (name_type == SID_NAME_ALIAS) ) {
- fstring only_username;
- fstrcpy(only_username, name);
- fstr_sprintf(name, "%s%s%s",
- dom_name, lp_winbind_separator(),
- only_username);
- strlower_m(name);
+ (name_type == SID_NAME_ALIAS) ) {
+ char *tmp;
+ tmp = talloc_asprintf(tmp_talloc_ctx(), "%s%s%s",
+ dom_name, lp_winbind_separator(),
+ name);
+ if (tmp == NULL) {
+ return False;
+ }
+ strlower_m(tmp);
+ name = tmp;
}
if (sidpts) {
/* Expect all users/groups in pts as SIDs */
- sid_to_string(name, &ace->trustee);
+ name = talloc_strdup(
+ tmp_talloc_ctx(),
+ sid_string_static(&ace->trustee));
+ if (name == NULL) {
+ return False;
+ }
}
}
@@ -1007,7 +1015,7 @@ static int afsacl_connect(vfs_handle_struct *handle,
const char *service,
const char *user)
{
- char *spc;
+ const char *spc;
spc = lp_parm_const_string(SNUM(handle->conn), "afsacl", "space", "%");