summaryrefslogtreecommitdiffstats
path: root/source/nmbd/nmbd_winsserver.c
diff options
context:
space:
mode:
authorAndrew Tridgell <tridge@samba.org>1998-09-17 06:36:08 +0000
committerAndrew Tridgell <tridge@samba.org>1998-09-17 06:36:08 +0000
commit1e1a512e3ff59f962fb3de382f671618bed60839 (patch)
tree838d1a01bd17a309c45f2739c665472e9351775d /source/nmbd/nmbd_winsserver.c
parentffa450acddb7aec6a440ae3fe6032c109805d176 (diff)
downloadsamba-1e1a512e3ff59f962fb3de382f671618bed60839.tar.gz
samba-1e1a512e3ff59f962fb3de382f671618bed60839.tar.xz
samba-1e1a512e3ff59f962fb3de382f671618bed60839.zip
fixed a potential problem with wins_write_database() child processes.
In sig_term() we were calling wins_write_database(0) which would fork a child. This child might then get killed by the same process killing off the parent. That process would then fork another child etc. The solution is to pass a "background" flag to wins_write_database(0) and only fork if this is set.
Diffstat (limited to 'source/nmbd/nmbd_winsserver.c')
-rw-r--r--source/nmbd/nmbd_winsserver.c21
1 files changed, 10 insertions, 11 deletions
diff --git a/source/nmbd/nmbd_winsserver.c b/source/nmbd/nmbd_winsserver.c
index 1502dd8155d..3c831ee1ea0 100644
--- a/source/nmbd/nmbd_winsserver.c
+++ b/source/nmbd/nmbd_winsserver.c
@@ -1535,7 +1535,7 @@ void initiate_wins_processing(time_t t)
expire_names_on_subnet(wins_server_subnet, t);
if(wins_server_subnet->namelist_changed)
- wins_write_database();
+ wins_write_database(True);
wins_server_subnet->namelist_changed = False;
}
@@ -1543,7 +1543,7 @@ void initiate_wins_processing(time_t t)
/*******************************************************************
Write out the current WINS database.
******************************************************************/
-void wins_write_database(void)
+void wins_write_database(BOOL background)
{
struct name_record *namerec;
pstring fname, fnamenew;
@@ -1556,16 +1556,15 @@ void wins_write_database(void)
/* we will do the writing in a child process to ensure that the parent
doesn't block while this is done */
- if ((child_pid=fork())) {
- return;
+ if (background) {
+ CatchChild();
+ if ((child_pid=fork())) {
+ return;
+ }
}
- pstrcpy(fname,lp_lockdir());
- trim_string(fname,NULL,"/");
- pstrcat(fname,"/");
- pstrcat(fname,WINS_LIST);
- pstrcpy(fnamenew,fname);
- pstrcat(fnamenew,".");
+ slprintf(fname,sizeof(fname),"%s/%s.%d", lp_lockdir(), WINS_LIST, getpid());
+ string_sub(s->fname,"//", "/");
if((fp = fopen(fnamenew,"w")) == NULL)
{
@@ -1612,7 +1611,7 @@ void wins_write_database(void)
}
fclose(fp);
- unlink(fname);
chmod(fnamenew,0644);
+ unlink(fname);
rename(fnamenew,fname);
}