summaryrefslogtreecommitdiff
path: root/source3
diff options
context:
space:
mode:
authorLuke Leighton <lkcl@samba.org>2000-05-27 09:19:57 +0000
committerLuke Leighton <lkcl@samba.org>2000-05-27 09:19:57 +0000
commit712a30ed51ca2b58e00d38a5d6d70d564b1da11b (patch)
tree459caacb9a440f85d8f318838638f0ab36d4dbd6 /source3
parent2f3dbeff6f555de91f772eeb1cfda86d80f35928 (diff)
downloadsamba-712a30ed51ca2b58e00d38a5d6d70d564b1da11b.tar.gz
samba-712a30ed51ca2b58e00d38a5d6d70d564b1da11b.tar.bz2
samba-712a30ed51ca2b58e00d38a5d6d70d564b1da11b.zip
prs_give_memory in wrong place, also poss. was losing mem.
(This used to be commit 9805e17cd0ce427c329a8b5a8318d5f75227e283)
Diffstat (limited to 'source3')
-rw-r--r--source3/lib/util_unixsd.c4
-rw-r--r--source3/smbd/nttrans.c14
-rw-r--r--source3/smbd/process.c27
3 files changed, 36 insertions, 9 deletions
diff --git a/source3/lib/util_unixsd.c b/source3/lib/util_unixsd.c
index 1bfc56a2da..bee9f69641 100644
--- a/source3/lib/util_unixsd.c
+++ b/source3/lib/util_unixsd.c
@@ -136,7 +136,7 @@ size_t convertperms_unix_to_sd(const SMB_STRUCT_STAT * sbuf,
(*ppdesc) = NULL;
- if (!lp_nt_acl_support())
+ if (!lp_nt_acl_support() || sbuf == NULL)
{
sid_copy(&owner_sid, global_sid_everyone);
sid_copy(&group_sid, global_sid_everyone);
@@ -302,7 +302,7 @@ size_t convertperms_unix_to_sd(const SMB_STRUCT_STAT * sbuf,
sec_desc_size = make_sec_desc((*ppdesc), 1,
SEC_DESC_SELF_RELATIVE |
- SEC_DESC_DACL_PRESENT,
+ (sbuf?SEC_DESC_DACL_PRESENT:0),
sid_dup(&owner_sid),
sid_dup(&group_sid), NULL, psa);
diff --git a/source3/smbd/nttrans.c b/source3/smbd/nttrans.c
index a149374114..bb0436aab3 100644
--- a/source3/smbd/nttrans.c
+++ b/source3/smbd/nttrans.c
@@ -1924,7 +1924,13 @@ static int call_nt_transact_query_security_desc(connection_struct *conn,
* Init the parse struct we will marshall into.
*/
- prs_init(&pd, sec_desc_size, 4, MARSHALL);
+ prs_init(&pd, 0, 4, MARSHALL);
+
+ /*
+ * copy the data out of the marshalled structure
+ */
+
+ prs_give_memory( &pd, data, (uint32)sec_desc_size, False);
/*
* Finally, linearize into the outgoing buffer.
@@ -1944,12 +1950,6 @@ security descriptor.\n"));
}
/*
- * copy the data out of the marshalled structure
- */
-
- prs_give_memory( &pd, data, (uint32)sec_desc_size, False);
-
- /*
* Now we can delete the security descriptor.
*/
diff --git a/source3/smbd/process.c b/source3/smbd/process.c
index 9e5b7b1477..74ec3b64db 100644
--- a/source3/smbd/process.c
+++ b/source3/smbd/process.c
@@ -408,6 +408,29 @@ struct smb_message_struct
{SMBgetmac,"SMBgetmac",NULL,AS_GUEST}
};
+/*******************************************************************
+dump a prs to a file
+ ********************************************************************/
+static void smb_dump(char *name, int type, char *data, ssize_t len)
+{
+ int fd, i;
+ pstring fname;
+ if (DEBUGLEVEL < 50) return;
+
+ if (len < 4) len = smb_buflen(data);
+ for (i=1;i<100;i++) {
+ slprintf(fname,sizeof(fname), "/tmp/%s.%d.%s", name, i,
+ type ? "req" : "resp");
+ fd = open(fname, O_WRONLY|O_CREAT|O_EXCL, 0644);
+ if (fd != -1 || errno != EEXIST) break;
+ }
+ if (fd != -1) {
+ write(fd, data, len);
+ close(fd);
+ DEBUG(0,("created %s len %d\n", fname, len));
+ }
+}
+
/****************************************************************************
do a switch on the message type, and return the response size
@@ -445,12 +468,14 @@ static int switch_message(int type,char *inbuf,char *outbuf,int size,int bufsize
if (match == num_smb_messages)
{
DEBUG(0,("Unknown message type %d!\n",type));
+ smb_dump("Unknown", 1, inbuf, size);
outsize = reply_unknown(inbuf,outbuf);
}
else
{
DEBUG(3,("switch message %s (pid %d)\n",smb_messages[match].name,(int)pid));
+ smb_dump(smb_messages[match].name, 1, inbuf, size);
if(global_oplock_break)
{
int flags = smb_messages[match].flags;
@@ -548,6 +573,8 @@ static int switch_message(int type,char *inbuf,char *outbuf,int size,int bufsize
}
}
+ smb_dump(smb_messages[match].name, 0, outbuf, outsize);
+
return(outsize);
}