Clean up a comment noticed by Jonathan Shao@Panasas.com and remove an
[Samba/gebeck_regimport.git] / source3 / nmbd / nmbd_serverlistdb.c
blobcdb1089a54faa57ede1d80c56cd70b07b34e75ea
1 /*
2 Unix SMB/CIFS implementation.
3 NBT netbios routines and daemon - version 2
4 Copyright (C) Andrew Tridgell 1994-1998
5 Copyright (C) Luke Kenneth Casson Leighton 1994-1998
6 Copyright (C) Jeremy Allison 1994-1998
8 This program is free software; you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
10 the Free Software Foundation; either version 2 of the License, or
11 (at your option) any later version.
13 This program is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
18 You should have received a copy of the GNU General Public License
19 along with this program; if not, write to the Free Software
20 Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
24 #include "includes.h"
26 extern int ClientNMB;
28 int updatecount = 0;
30 /*******************************************************************
31 Remove all the servers in a work group.
32 ******************************************************************/
34 void remove_all_servers(struct work_record *work)
36 struct server_record *servrec;
37 struct server_record *nexts;
39 for (servrec = work->serverlist; servrec; servrec = nexts) {
40 DEBUG(7,("remove_all_servers: Removing server %s\n",servrec->serv.name));
41 nexts = servrec->next;
43 if (servrec->prev)
44 servrec->prev->next = servrec->next;
45 if (servrec->next)
46 servrec->next->prev = servrec->prev;
48 if (work->serverlist == servrec)
49 work->serverlist = servrec->next;
51 ZERO_STRUCTP(servrec);
52 SAFE_FREE(servrec);
55 work->subnet->work_changed = True;
58 /***************************************************************************
59 Add a server into the a workgroup serverlist.
60 **************************************************************************/
62 static void add_server_to_workgroup(struct work_record *work,
63 struct server_record *servrec)
65 struct server_record *servrec2;
67 if (!work->serverlist) {
68 work->serverlist = servrec;
69 servrec->prev = NULL;
70 servrec->next = NULL;
71 return;
74 for (servrec2 = work->serverlist; servrec2->next; servrec2 = servrec2->next)
77 servrec2->next = servrec;
78 servrec->next = NULL;
79 servrec->prev = servrec2;
80 work->subnet->work_changed = True;
83 /****************************************************************************
84 Find a server in a server list.
85 **************************************************************************/
87 struct server_record *find_server_in_workgroup(struct work_record *work, const char *name)
89 struct server_record *ret;
91 for (ret = work->serverlist; ret; ret = ret->next) {
92 if (strequal(ret->serv.name,name))
93 return ret;
95 return NULL;
99 /****************************************************************************
100 Remove a server entry from this workgroup.
101 ****************************************************************************/
103 void remove_server_from_workgroup(struct work_record *work, struct server_record *servrec)
105 if (servrec->prev)
106 servrec->prev->next = servrec->next;
107 if (servrec->next)
108 servrec->next->prev = servrec->prev;
110 if (work->serverlist == servrec)
111 work->serverlist = servrec->next;
113 ZERO_STRUCTP(servrec);
114 SAFE_FREE(servrec);
115 work->subnet->work_changed = True;
118 /****************************************************************************
119 Create a server entry on this workgroup.
120 ****************************************************************************/
122 struct server_record *create_server_on_workgroup(struct work_record *work,
123 const char *name,int servertype,
124 int ttl, const char *comment)
126 struct server_record *servrec;
128 if (name[0] == '*') {
129 DEBUG(7,("create_server_on_workgroup: not adding name starting with '*' (%s)\n",
130 name));
131 return (NULL);
134 if((servrec = find_server_in_workgroup(work, name)) != NULL) {
135 DEBUG(0,("create_server_on_workgroup: Server %s already exists on \
136 workgroup %s. This is a bug.\n", name, work->work_group));
137 return NULL;
140 if((servrec = (struct server_record *)malloc(sizeof(*servrec))) == NULL) {
141 DEBUG(0,("create_server_entry_on_workgroup: malloc fail !\n"));
142 return NULL;
145 memset((char *)servrec,'\0',sizeof(*servrec));
147 servrec->subnet = work->subnet;
149 fstrcpy(servrec->serv.name,name);
150 fstrcpy(servrec->serv.comment,comment);
151 strupper_m(servrec->serv.name);
152 servrec->serv.type = servertype;
154 update_server_ttl(servrec, ttl);
156 add_server_to_workgroup(work, servrec);
158 DEBUG(3,("create_server_on_workgroup: Created server entry %s of type %x (%s) on \
159 workgroup %s.\n", name,servertype,comment, work->work_group));
161 work->subnet->work_changed = True;
163 return(servrec);
166 /*******************************************************************
167 Update the ttl field of a server record.
168 *******************************************************************/
170 void update_server_ttl(struct server_record *servrec, int ttl)
172 if(ttl > lp_max_ttl())
173 ttl = lp_max_ttl();
175 if(is_myname(servrec->serv.name))
176 servrec->death_time = PERMANENT_TTL;
177 else
178 servrec->death_time = (ttl != PERMANENT_TTL) ? time(NULL)+(ttl*3) : PERMANENT_TTL;
180 servrec->subnet->work_changed = True;
183 /*******************************************************************
184 Expire old servers in the serverlist. A time of -1 indicates
185 everybody dies except those with a death_time of PERMANENT_TTL (which is 0).
186 This should only be called from expire_workgroups_and_servers().
187 ******************************************************************/
189 void expire_servers(struct work_record *work, time_t t)
191 struct server_record *servrec;
192 struct server_record *nexts;
194 for (servrec = work->serverlist; servrec; servrec = nexts) {
195 nexts = servrec->next;
197 if ((servrec->death_time != PERMANENT_TTL) && ((t == -1) || (servrec->death_time < t))) {
198 DEBUG(3,("expire_old_servers: Removing timed out server %s\n",servrec->serv.name));
199 remove_server_from_workgroup(work, servrec);
200 work->subnet->work_changed = True;
205 /*******************************************************************
206 Decide if we should write out a server record for this server.
207 We return zero if we should not. Check if we've already written
208 out this server record from an earlier subnet.
209 ******************************************************************/
211 static uint32 write_this_server_name( struct subnet_record *subrec,
212 struct work_record *work,
213 struct server_record *servrec)
215 struct subnet_record *ssub;
216 struct work_record *iwork;
218 /* Go through all the subnets we have already seen. */
219 for (ssub = FIRST_SUBNET; ssub != subrec; ssub = NEXT_SUBNET_INCLUDING_UNICAST(ssub)) {
220 for(iwork = ssub->workgrouplist; iwork; iwork = iwork->next) {
221 if(find_server_in_workgroup( iwork, servrec->serv.name) != NULL) {
223 * We have already written out this server record, don't
224 * do it again. This gives precedence to servers we have seen
225 * on the broadcast subnets over servers that may have been
226 * added via a sync on the unicast_subet.
228 * The correct way to do this is to have a serverlist file
229 * per subnet - this means changes to smbd as well. I may
230 * add this at a later date (JRA).
233 return 0;
238 return servrec->serv.type;
241 /*******************************************************************
242 Decide if we should write out a workgroup record for this workgroup.
243 We return zero if we should not. Don't write out lp_workgroup() (we've
244 already done it) and also don't write out a second workgroup record
245 on the unicast subnet that we've already written out on one of the
246 broadcast subnets.
247 ******************************************************************/
249 static uint32 write_this_workgroup_name( struct subnet_record *subrec,
250 struct work_record *work)
252 struct subnet_record *ssub;
254 if(strnequal(lp_workgroup(), work->work_group, sizeof(nstring)-1))
255 return 0;
257 /* This is a workgroup we have seen on a broadcast subnet. All
258 these have the same type. */
260 if(subrec != unicast_subnet)
261 return (SV_TYPE_DOMAIN_ENUM|SV_TYPE_NT|SV_TYPE_LOCAL_LIST_ONLY);
263 for(ssub = FIRST_SUBNET; ssub; ssub = NEXT_SUBNET_EXCLUDING_UNICAST(ssub)) {
264 /* This is the unicast subnet so check if we've already written out
265 this subnet when we passed over the broadcast subnets. */
267 if(find_workgroup_on_subnet( ssub, work->work_group) != NULL)
268 return 0;
271 /* All workgroups on the unicast subnet (except our own, which we
272 have already written out) cannot be local. */
274 return (SV_TYPE_DOMAIN_ENUM|SV_TYPE_NT);
277 /*******************************************************************
278 Write out the browse.dat file.
279 ******************************************************************/
281 void write_browse_list_entry(XFILE *fp, const char *name, uint32 rec_type,
282 const char *local_master_browser_name, const char *description)
284 fstring tmp;
286 slprintf(tmp,sizeof(tmp)-1, "\"%s\"", name);
287 x_fprintf(fp, "%-25s ", tmp);
288 x_fprintf(fp, "%08x ", rec_type);
289 slprintf(tmp, sizeof(tmp)-1, "\"%s\" ", local_master_browser_name);
290 x_fprintf(fp, "%-30s", tmp);
291 x_fprintf(fp, "\"%s\"\n", description);
294 void write_browse_list(time_t t, BOOL force_write)
296 struct subnet_record *subrec;
297 struct work_record *work;
298 struct server_record *servrec;
299 pstring fname,fnamenew;
300 uint32 stype;
301 int i;
302 XFILE *fp;
303 BOOL list_changed = force_write;
304 static time_t lasttime = 0;
306 /* Always dump if we're being told to by a signal. */
307 if(force_write == False) {
308 if (!lasttime)
309 lasttime = t;
310 if (t - lasttime < 5)
311 return;
314 lasttime = t;
316 dump_workgroups(force_write);
318 for (subrec = FIRST_SUBNET; subrec ; subrec = NEXT_SUBNET_INCLUDING_UNICAST(subrec)) {
319 if(subrec->work_changed) {
320 list_changed = True;
321 break;
325 if(!list_changed)
326 return;
328 updatecount++;
330 pstrcpy(fname,lp_lockdir());
331 trim_char(fname,'\0' ,'/');
332 pstrcat(fname,"/");
333 pstrcat(fname,SERVER_LIST);
334 pstrcpy(fnamenew,fname);
335 pstrcat(fnamenew,".");
337 fp = x_fopen(fnamenew,O_WRONLY|O_CREAT|O_TRUNC, 0644);
339 if (!fp) {
340 DEBUG(0,("write_browse_list: Can't open file %s. Error was %s\n",
341 fnamenew,strerror(errno)));
342 return;
346 * Write out a record for our workgroup. Use the record from the first
347 * subnet.
350 if((work = find_workgroup_on_subnet(FIRST_SUBNET, lp_workgroup())) == NULL) {
351 DEBUG(0,("write_browse_list: Fatal error - cannot find my workgroup %s\n",
352 lp_workgroup()));
353 x_fclose(fp);
354 return;
357 write_browse_list_entry(fp, work->work_group,
358 SV_TYPE_DOMAIN_ENUM|SV_TYPE_NT|SV_TYPE_LOCAL_LIST_ONLY,
359 work->local_master_browser_name, work->work_group);
362 * We need to do something special for our own names.
363 * This is due to the fact that we may be a local master browser on
364 * one of our broadcast subnets, and a domain master on the unicast
365 * subnet. We iterate over the subnets and only write out the name
366 * once.
369 for (i=0; my_netbios_names(i); i++) {
370 stype = 0;
371 for (subrec = FIRST_SUBNET; subrec ; subrec = NEXT_SUBNET_INCLUDING_UNICAST(subrec)) {
372 if((work = find_workgroup_on_subnet( subrec, lp_workgroup() )) == NULL)
373 continue;
374 if((servrec = find_server_in_workgroup( work, my_netbios_names(i))) == NULL)
375 continue;
377 stype |= servrec->serv.type;
380 /* Output server details, plus what workgroup they're in. */
381 write_browse_list_entry(fp, my_netbios_names(i), stype,
382 string_truncate(lp_serverstring(), MAX_SERVER_STRING_LENGTH), lp_workgroup());
385 for (subrec = FIRST_SUBNET; subrec ; subrec = NEXT_SUBNET_INCLUDING_UNICAST(subrec)) {
386 subrec->work_changed = False;
388 for (work = subrec->workgrouplist; work ; work = work->next) {
389 /* Write out a workgroup record for a workgroup. */
390 uint32 wg_type = write_this_workgroup_name( subrec, work);
392 if(wg_type) {
393 write_browse_list_entry(fp, work->work_group, wg_type,
394 work->local_master_browser_name,
395 work->work_group);
398 /* Now write out any server records a workgroup may have. */
400 for (servrec = work->serverlist; servrec ; servrec = servrec->next) {
401 uint32 serv_type;
403 /* We have already written our names here. */
404 if(is_myname(servrec->serv.name))
405 continue;
407 serv_type = write_this_server_name(subrec, work, servrec);
408 if(serv_type) {
409 /* Output server details, plus what workgroup they're in. */
410 write_browse_list_entry(fp, servrec->serv.name, serv_type,
411 servrec->serv.comment, work->work_group);
417 x_fclose(fp);
418 unlink(fname);
419 chmod(fnamenew,0644);
420 rename(fnamenew,fname);
421 DEBUG(3,("write_browse_list: Wrote browse list into file %s\n",fname));