summaryrefslogtreecommitdiff
path: root/source3
diff options
context:
space:
mode:
authorAndrew Tridgell <tridge@samba.org>1998-10-23 01:26:46 +0000
committerAndrew Tridgell <tridge@samba.org>1998-10-23 01:26:46 +0000
commitd6ad9474b297e900bc3b7576f3b968b0eb70cae4 (patch)
tree0ffeb37bb550ad50d3321cb0b98db79b2140d8bc /source3
parent5d6ed11ef3c860c95ae7b3a855b0ddb123bd9737 (diff)
downloadsamba-d6ad9474b297e900bc3b7576f3b968b0eb70cae4.tar.gz
samba-d6ad9474b297e900bc3b7576f3b968b0eb70cae4.tar.bz2
samba-d6ad9474b297e900bc3b7576f3b968b0eb70cae4.zip
make the shared variable stuff slightly more sophisticated
(This used to be commit 636182f18346af457f905cd784e68ae5d4f75d0e)
Diffstat (limited to 'source3')
-rw-r--r--source3/smbwrapper/shared.c38
1 files changed, 26 insertions, 12 deletions
diff --git a/source3/smbwrapper/shared.c b/source3/smbwrapper/shared.c
index 58a37254e8..7a5cbcee22 100644
--- a/source3/smbwrapper/shared.c
+++ b/source3/smbwrapper/shared.c
@@ -65,6 +65,7 @@ void smbw_setup_shared(void)
exit(1);
}
+static int locked;
/*****************************************************
lock the shared variable area
@@ -79,10 +80,12 @@ static void lockit(void)
}
shared_fd = atoi(p);
}
- if (fcntl_lock(shared_fd,SMB_F_SETLKW,0,1,F_WRLCK)==False) {
+ if (locked==0 &&
+ fcntl_lock(shared_fd,SMB_F_SETLKW,0,1,F_WRLCK)==False) {
DEBUG(0,("ERROR: can't get smbw shared lock\n"));
exit(1);
}
+ locked++;
}
/*****************************************************
@@ -90,7 +93,10 @@ unlock the shared variable area
*******************************************************/
static void unlockit(void)
{
- fcntl_lock(shared_fd,SMB_F_SETLK,0,1,F_UNLCK);
+ locked--;
+ if (locked == 0) {
+ fcntl_lock(shared_fd,SMB_F_SETLK,0,1,F_UNLCK);
+ }
}
@@ -122,11 +128,14 @@ char *smbw_getshared(const char *name)
i=0;
while (i < shared_size) {
char *n, *v;
+ int l1, l2;
+
+ l1 = SVAL(&variables[i], 0);
+ l2 = SVAL(&variables[i], 2);
- n = &variables[i];
- i += strlen(n)+1;
- v = &variables[i];
- i += strlen(v)+1;
+ n = &variables[i+4];
+ v = &variables[i+4+l1];
+ i += 4+l1+l2;
if (strcmp(name,n)) {
continue;
@@ -150,25 +159,30 @@ set a variable in the shared area
void smbw_setshared(const char *name, const char *val)
{
int len;
+ int l1, l2;
/* we don't allow variable overwrite */
if (smbw_getshared(name)) return;
lockit();
- len = strlen(name) + strlen(val) + 2;
+ l1 = strlen(name)+1;
+ l2 = strlen(val)+1;
- variables = (char *)Realloc(variables, shared_size + len);
+ variables = (char *)Realloc(variables, shared_size + l1+l2+4);
if (!variables) {
DEBUG(0,("out of memory in smbw_setshared\n"));
exit(1);
}
- pstrcpy(&variables[shared_size], name);
- shared_size += strlen(name)+1;
- pstrcpy(&variables[shared_size], val);
- shared_size += strlen(val)+1;
+ SSVAL(&variables[shared_size], 0, l1);
+ SSVAL(&variables[shared_size], 2, l2);
+
+ pstrcpy(&variables[shared_size] + 4, name);
+ pstrcpy(&variables[shared_size] + 4 + l1, val);
+
+ shared_size += l1+l2+4;
lseek(shared_fd, 0, SEEK_SET);
if (write(shared_fd, variables, shared_size) != shared_size) {