added some debug lines to the rename code
[Samba.git] / source / nameelect.c
blobae4dc0857ab2baf76d378f14ce26f21121835a15
1 /*
2 Unix SMB/Netbios implementation.
3 Version 1.9.
4 NBT netbios routines and daemon - version 2
5 Copyright (C) Andrew Tridgell 1994-1997
7 This program is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 2 of the License, or
10 (at your option) any later version.
12 This program is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with this program; if not, write to the Free Software
19 Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
21 Module name: nameelect.c
23 Revision History:
25 14 jan 96: lkcl@pires.co.uk
26 added multiple workgroup domain master support
28 04 jul 96: lkcl@pires.co.uk
29 added system to become a master browser by stages.
34 #include "includes.h"
36 extern int ClientNMB;
37 extern int ClientDGRAM;
39 extern int DEBUGLEVEL;
40 extern pstring scope;
42 extern pstring myname;
43 extern fstring myworkgroup;
44 extern struct in_addr ipzero;
45 extern struct in_addr wins_ip;
47 /* here are my election parameters */
49 extern time_t StartupTime;
51 extern struct subnet_record *subnetlist;
53 extern uint16 nb_type; /* samba's NetBIOS name type */
56 /*******************************************************************
57 occasionally check to see if the master browser is around
58 ******************************************************************/
59 void check_master_browser(time_t t)
61 static time_t lastrun=0;
62 struct subnet_record *d;
64 if (!lastrun) lastrun = t;
65 if (t < lastrun + CHECK_TIME_MST_BROWSE * 60) return;
67 lastrun = t;
69 dump_workgroups();
71 for (d = FIRST_SUBNET; d; d = NEXT_SUBNET_EXCLUDING_WINS(d))
73 struct work_record *work;
75 for (work = d->workgrouplist; work; work = work->next)
77 if (strequal(work->work_group, myworkgroup) && !AM_MASTER(work))
79 if (lp_local_master() && lp_preferred_master())
81 /* potential master browser - not a master browser. force
82 becoming a master browser, hence the log message.
85 DEBUG(2,("%s potential master for %s %s - force election\n",
86 timestring(), work->work_group,
87 inet_ntoa(d->bcast_ip)));
89 browser_gone(work->work_group, d->bcast_ip);
91 else
93 /* if we are not the browse master of a workgroup,
94 and we can't find a browser on the subnet, do
95 something about it.
98 queue_netbios_packet(d,ClientNMB,NMB_QUERY,NAME_QUERY_MST_CHK,
99 work->work_group,0x1d,0,0,0,NULL,NULL,
100 True,False,d->bcast_ip,d->bcast_ip, 0);
108 /*******************************************************************
109 what to do if a master browser DOESN't exist.
111 option 1: force an election, and participate in it
112 option 2: force an election, and let everyone else participate.
114 ******************************************************************/
115 void browser_gone(char *work_name, struct in_addr ip)
117 struct subnet_record *d = find_subnet(ip);
118 struct work_record *work = find_workgroupstruct(d, work_name, False);
120 /* i don't know about this workgroup, therefore i don't care */
121 if (!work || !d) return;
123 /* don't do election stuff on the WINS subnet */
124 if (ip_equal(d->bcast_ip,wins_ip))
125 return;
127 if (strequal(work->work_group, myworkgroup))
130 if (lp_local_master())
132 /* we have discovered that there is no local master
133 browser, and we are configured to initiate
134 an election under exactly such circumstances.
136 DEBUG(2,("Forcing election on %s %s\n",
137 work->work_group,inet_ntoa(d->bcast_ip)));
139 /* we can attempt to become master browser */
140 work->needelection = True;
142 else
144 /* we need to force an election, because we are configured
145 not to _become_ the local master, but we still _need_ one,
146 having detected that one doesn't exist.
149 /* local interfaces: force an election */
150 send_election(d, work->work_group, 0, 0, myname);
152 /* only removes workgroup completely on a local interface
153 persistent lmhosts entries on a local interface _will_ be removed).
155 remove_workgroup(d, work,True);
156 add_workgroup_to_subnet(d, work->work_group);
162 /****************************************************************************
163 send an election packet
164 **************************************************************************/
165 void send_election(struct subnet_record *d, char *group,uint32 criterion,
166 int timeup,char *name)
168 pstring outbuf;
169 char *p;
171 if (!d) return;
173 DEBUG(2,("Sending election to %s for workgroup %s\n",
174 inet_ntoa(d->bcast_ip),group));
176 bzero(outbuf,sizeof(outbuf));
177 p = outbuf;
178 CVAL(p,0) = ANN_Election; /* election */
179 p++;
181 CVAL(p,0) = (criterion == 0 && timeup == 0) ? 0 : ELECTION_VERSION;
182 SIVAL(p,1,criterion);
183 SIVAL(p,5,timeup*1000); /* ms - despite the spec */
184 p += 13;
185 pstrcpy(p,name);
186 strupper(p);
187 p = skip_string(p,1);
189 send_mailslot_reply(False,BROWSE_MAILSLOT,ClientDGRAM,
190 outbuf,PTR_DIFF(p,outbuf),
191 name,group,0,0x1e,d->bcast_ip,*iface_ip(d->bcast_ip));
195 /****************************************************************************
196 un-register a SELF name that got rejected.
198 if this name happens to be rejected when samba is in the process
199 of becoming a master browser (registering __MSBROWSE__, WORKGROUP(1d)
200 or WORKGROUP(1b)) then we must stop being a master browser. sad.
202 **************************************************************************/
203 void name_unregister_work(struct subnet_record *d, char *name, int name_type)
205 struct work_record *work;
206 int remove_type_local = 0;
207 int remove_type_domain = 0;
208 int remove_type_logon = 0;
210 remove_netbios_name(d,name,name_type,SELF);
212 if (!(work = find_workgroupstruct(d, name, False))) return;
214 /* work out what to unbecome, from the name type being removed */
216 if (ms_browser_name(name, name_type))
218 remove_type_local |= SV_TYPE_MASTER_BROWSER;
220 if (AM_MASTER(work) && strequal(name, myworkgroup) && name_type == 0x1d)
222 remove_type_local |= SV_TYPE_MASTER_BROWSER;
224 if (AM_DOMMST(work) && strequal(name, myworkgroup) && name_type == 0x1b)
226 remove_type_domain |= SV_TYPE_DOMAIN_MASTER;
228 if (AM_DOMMEM(work) && strequal(name, myworkgroup) && name_type == 0x1c)
230 remove_type_logon|= SV_TYPE_DOMAIN_MEMBER;
233 if (remove_type_local ) unbecome_local_master (d, work, remove_type_local );
234 if (remove_type_domain) unbecome_domain_master(d, work, remove_type_domain);
235 if (remove_type_logon ) unbecome_logon_server (d, work, remove_type_logon );
239 /****************************************************************************
240 registers a name.
242 if the name being added is a SELF name, we must additionally check
243 whether to proceed to the next stage in samba becoming a master browser.
245 **************************************************************************/
246 void name_register_work(struct subnet_record *d, char *name, int name_type,
247 int nb_flags, time_t ttl, struct in_addr ip, BOOL bcast)
249 enum name_source source = (ismyip(ip) || ip_equal(ip, ipzero)) ?
250 SELF : REGISTER;
252 if (source == SELF)
254 struct work_record *work = find_workgroupstruct(d,
255 myworkgroup, False);
257 struct subnet_record *add_subnet = (!bcast) ? wins_client_subnet : d;
258 add_netbios_entry(add_subnet,name,name_type,nb_flags,ttl,source,ip,True);
260 if (work)
262 int add_type_local = False;
263 int add_type_domain = False;
264 int add_type_logon = False;
266 DEBUG(4,("checking next stage: name_register_work %s\n", name));
268 /* work out what to become, from the name type being added */
270 if (ms_browser_name(name, name_type))
272 add_type_local = True;
274 if (strequal(name, myworkgroup) && name_type == 0x1d)
276 add_type_local = True;
278 if (strequal(name, myworkgroup) && name_type == 0x1b)
280 add_type_domain = True;
282 if (strequal(name, myworkgroup) && name_type == 0x1c)
284 add_type_logon = True;
287 if (add_type_local ) become_local_master (d, work);
288 if (add_type_domain) become_domain_master(d, work);
289 if (add_type_logon ) become_logon_server (d, work);
295 /*******************************************************************
296 become the local master browser.
298 this is done in stages. note that this could take a while,
299 particularly on a broadcast subnet, as we have to wait for
300 the implicit registration of each name to be accepted.
302 as each name is successfully registered, become_local_master() is
303 called again, in order to initiate the next stage. see
304 dead_netbios_entry() - deals with implicit name registration
305 and response_name_reg() - deals with explicit registration
306 with a WINS server.
308 stage 1: was MST_POTENTIAL - go to MST_POTENTIAL and register ^1^2__MSBROWSE__^2^1.
309 stage 2: was MST_BACK - go to MST_MSB and register WORKGROUP(0x1d)
310 stage 3: was MST_MSB - go to MST_BROWSER and stay there
312 XXXX note: this code still does not cope with the distinction
313 between different types of nodes, particularly between M and P
314 nodes. that comes later.
316 ******************************************************************/
317 void become_local_master(struct subnet_record *d, struct work_record *work)
319 /* domain type must be limited to domain enum + server type. it must
320 not have SV_TYPE_SERVER or anything else with SERVER in it, else
321 clients get confused and start thinking this entry is a server
322 not a workgroup
324 uint32 domain_type = SV_TYPE_DOMAIN_ENUM|SV_TYPE_NT;
326 if (lp_domain_controller()) domain_type |= SV_TYPE_DOMAIN_CTRL;
328 if (!work || !d)
329 return;
331 if (!lp_local_master())
333 DEBUG(0,("Samba not configured as a local master browser.\n"));
334 return;
337 DEBUG(2,("Becoming master for %s %s (currently at stage %d)\n",
338 work->work_group,inet_ntoa(d->bcast_ip),work->mst_state));
340 switch (work->mst_state)
342 case MST_POTENTIAL: /* while we were nothing but a server... */
344 DEBUG(3,("go to first stage: register ^1^2__MSBROWSE__^2^1\n"));
345 work->mst_state = MST_BACK; /* an election win was successful */
347 work->ElectionCriterion |= 0x5;
349 /* update our server status */
350 work->ServerType &= ~SV_TYPE_POTENTIAL_BROWSER;
351 add_server_entry(d,work,myname,work->ServerType|SV_TYPE_LOCAL_LIST_ONLY,
352 0,lp_serverstring(),True);
354 /* add special browser name */
355 add_my_name_entry(d,MSBROWSE,0x01,nb_type|NB_ACTIVE|NB_GROUP);
357 /* DON'T do anything else after calling add_my_name_entry() */
358 break;
361 case MST_BACK: /* while nothing had happened except we won an election... */
363 DEBUG(3,("go to second stage: register as master browser\n"));
364 work->mst_state = MST_MSB; /* registering MSBROWSE was successful */
366 /* add server entry on successful registration of MSBROWSE */
367 add_server_entry(d,work,work->work_group,domain_type|SV_TYPE_LOCAL_LIST_ONLY,
368 0,myname,True);
370 /* add master name */
371 add_my_name_entry(d,work->work_group,0x1d,nb_type|NB_ACTIVE);
373 /* DON'T do anything else after calling add_my_name_entry() */
374 break;
377 case MST_MSB: /* while we were still only registered MSBROWSE state... */
379 int i = 0;
380 struct server_record *sl;
382 DEBUG(3,("2nd stage complete: registered as master browser for workgroup %s \
383 on subnet %s\n", work->work_group, inet_ntoa(d->bcast_ip)));
384 work->mst_state = MST_BROWSER; /* registering WORKGROUP(1d) succeeded */
386 /* update our server status */
387 work->ServerType |= SV_TYPE_MASTER_BROWSER;
389 DEBUG(3,("become_local_master: updating our server %s to type %x\n",
390 myname, work->ServerType));
392 add_server_entry(d,work,myname,work->ServerType|SV_TYPE_LOCAL_LIST_ONLY,
393 0,lp_serverstring(),True);
395 /* Count the number of servers we have on our list. If it's
396 less than 10 (just a heuristic) request the servers
397 to announce themselves.
399 for( sl = work->serverlist; sl != NULL; sl = sl->next)
400 i++;
402 if (i < 10)
404 /* ask all servers on our local net to announce to us */
405 announce_request(work, d->bcast_ip);
408 /* Reset the announce master timer so that we do an announce as soon as possible
409 now we are a master. */
410 reset_announce_timer();
412 DEBUG(0,("Samba is now a local master browser for workgroup %s on subnet %s\n",
413 work->work_group, inet_ntoa(d->bcast_ip)));
415 break;
418 case MST_BROWSER:
420 /* don't have to do anything: just report success */
421 DEBUG(3,("3rd stage: become master browser!\n"));
422 break;
428 /*******************************************************************
429 become the domain master browser.
431 this is done in stages. note that this could take a while,
432 particularly on a broadcast subnet, as we have to wait for
433 the implicit registration of each name to be accepted.
435 as each name is successfully registered, become_domain_master() is
436 called again, in order to initiate the next stage. see
437 dead_netbios_entry() - deals with implicit name registration
438 and response_name_reg() - deals with explicit registration
439 with a WINS server.
441 stage 1: was DOMAIN_NONE - go to DOMAIN_MST
443 XXXX note: this code still does not cope with the distinction
444 between different types of nodes, particularly between M and P
445 nodes. that comes later.
447 ******************************************************************/
448 void become_domain_master(struct subnet_record *d, struct work_record *work)
450 /* domain type must be limited to domain enum + server type. it must
451 not have SV_TYPE_SERVER or anything else with SERVER in it, else
452 clients get confused and start thinking this entry is a server
453 not a workgroup
456 if (!work || !d) return;
458 if (!lp_domain_master())
460 DEBUG(0,("Samba not configured as a domain master browser.\n"));
461 return;
464 DEBUG(2,("Becoming domain master for %s %s (currently at stage %d)\n",
465 work->work_group,inet_ntoa(d->bcast_ip),work->dom_state));
467 switch (work->dom_state)
469 case DOMAIN_NONE: /* while we were nothing but a server... */
471 DEBUG(3,("become_domain_master: go to first stage: register <1b> name\n"));
472 work->dom_state = DOMAIN_WAIT;
474 /* XXXX the 0x1b is domain master browser name */
475 add_my_name_entry(d, work->work_group,0x1b,nb_type|NB_ACTIVE);
477 /* DON'T do anything else after calling add_my_name_entry() */
478 break;
481 case DOMAIN_WAIT:
483 work->dom_state = DOMAIN_MST; /* ... become domain master */
484 DEBUG(3,("become_domain_master: first stage - register as domain member\n"));
486 /* update our server status */
487 work->ServerType |= SV_TYPE_NT|SV_TYPE_DOMAIN_MASTER;
488 add_server_entry(d,work,myname,work->ServerType|SV_TYPE_LOCAL_LIST_ONLY,
489 0, lp_serverstring(),True);
491 DEBUG(0,("Samba is now a domain master browser for workgroup %s on subnet %s\n",
492 work->work_group, inet_ntoa(d->bcast_ip)));
494 if (d == wins_client_subnet)
496 /* ok! we successfully registered by unicast with the
497 WINS server. we now expect to become the domain
498 master on the local subnets. if this fails, it's
499 probably a 1.9.16p2 to 1.9.16p11 server's fault.
501 this is a configuration issue that should be addressed
502 by the network administrator - you shouldn't have
503 several machines configured as a domain master browser
504 for the same WINS scope (except if they are 1.9.17 or
505 greater, and you know what you're doing.
507 see DOMAIN.txt.
510 add_domain_master_bcast();
512 break;
515 case DOMAIN_MST:
517 /* don't have to do anything: just report success */
518 DEBUG(3,("domain second stage: there isn't one!\n"));
519 break;
525 /*******************************************************************
526 become a logon server.
527 ******************************************************************/
528 void become_logon_server(struct subnet_record *d, struct work_record *work)
530 if (!work || !d) return;
532 if (!lp_domain_logons())
534 DEBUG(0,("samba not configured as a logon master.\n"));
535 return;
538 DEBUG(2,("Becoming logon server for %s %s (currently at stage %d)\n",
539 work->work_group,inet_ntoa(d->bcast_ip),work->log_state));
541 switch (work->log_state)
543 case LOGON_NONE: /* while we were nothing but a server... */
545 DEBUG(3,("go to first stage: register <1c> name\n"));
546 work->log_state = LOGON_WAIT;
548 /* XXXX the 0x1c is apparently something to do with domain logons */
549 add_my_name_entry(d, myworkgroup,0x1c,nb_type|NB_ACTIVE|NB_GROUP);
551 /* DON'T do anything else after calling add_my_name_entry() */
552 break;
555 case LOGON_WAIT:
557 work->log_state = LOGON_SRV; /* ... become logon server */
558 DEBUG(3,("logon second stage: register \n"));
560 /* update our server status */
561 work->ServerType |= SV_TYPE_NT|SV_TYPE_DOMAIN_MEMBER;
562 add_server_entry(d,work,myname,work->ServerType|SV_TYPE_LOCAL_LIST_ONLY
563 ,0, lp_serverstring(),True);
565 /* DON'T do anything else after calling add_my_name_entry() */
566 break;
569 case LOGON_SRV:
571 DEBUG(3,("logon third stage: there isn't one!\n"));
572 break;
578 /*******************************************************************
579 unbecome the local master browser. initates removal of necessary netbios
580 names, and tells the world that we are no longer a master browser.
582 XXXX this _should_ be used to demote to a backup master browser, without
583 going straight to non-master browser. another time.
585 ******************************************************************/
586 void unbecome_local_master(struct subnet_record *d, struct work_record *work,
587 int remove_type)
589 int new_server_type = work->ServerType;
591 /* can only remove master types with this function */
592 remove_type &= SV_TYPE_MASTER_BROWSER;
594 new_server_type &= ~remove_type;
596 if (remove_type)
598 DEBUG(2,("Becoming local non-master for %s\n",work->work_group));
600 /* no longer a master browser of any sort */
602 work->ServerType |= SV_TYPE_POTENTIAL_BROWSER;
603 work->ElectionCriterion &= ~0x4;
604 work->mst_state = MST_POTENTIAL;
606 /* announce ourselves as no longer active as a master browser. */
607 announce_server(d, work, work->work_group, myname, 0, 0);
608 remove_name_entry(d,MSBROWSE ,0x01);
609 remove_name_entry(d,work->work_group,0x1d);
614 /*******************************************************************
615 unbecome the domain master browser. initates removal of necessary netbios
616 names, and tells the world that we are no longer a domain browser.
617 ******************************************************************/
618 void unbecome_domain_master(struct subnet_record *d, struct work_record *work,
619 int remove_type)
621 int new_server_type = work->ServerType;
623 DEBUG(2,("Becoming domain non-master for %s\n",work->work_group));
625 /* can only remove master or domain types with this function */
626 remove_type &= SV_TYPE_DOMAIN_MASTER;
628 new_server_type &= ~remove_type;
630 if (remove_type)
632 /* no longer a domain master browser of any sort */
634 work->dom_state = DOMAIN_NONE;
636 /* announce ourselves as no longer active as a master browser on
637 all our local subnets. */
638 for (d = FIRST_SUBNET; d; d = NEXT_SUBNET_EXCLUDING_WINS(d))
640 work = find_workgroupstruct(d, myworkgroup, False);
642 /* Remove the name entry without any NetBIOS traffic as that's
643 how it was registered. */
644 remove_name_entry(d,work->work_group,0x1b);
647 /* Unregister the 1b name from the WINS server. */
648 if(wins_client_subnet != NULL)
649 remove_name_entry(wins_client_subnet, myworkgroup, 0x1b);
654 /*******************************************************************
655 unbecome the logon server. initates removal of necessary netbios
656 names, and tells the world that we are no longer a logon server.
657 ******************************************************************/
658 void unbecome_logon_server(struct subnet_record *d, struct work_record *work,
659 int remove_type)
661 int new_server_type = work->ServerType;
663 DEBUG(2,("Becoming logon non-server for %s\n",work->work_group));
665 /* can only remove master or domain types with this function */
666 remove_type &= SV_TYPE_DOMAIN_MEMBER;
668 new_server_type &= ~remove_type;
670 if (remove_type)
672 /* no longer a master browser of any sort */
674 work->log_state = LOGON_NONE;
676 remove_name_entry(d,work->work_group,0x1c);
681 /*******************************************************************
682 run the election
683 ******************************************************************/
684 void run_elections(time_t t)
686 static time_t lastime = 0;
688 struct subnet_record *d;
690 /* send election packets once a second */
691 if (lastime && t-lastime <= 0) return;
693 lastime = t;
695 for (d = FIRST_SUBNET; d; d = NEXT_SUBNET_EXCLUDING_WINS(d))
697 struct work_record *work;
699 for (work = d->workgrouplist; work; work = work->next)
701 if (work->RunningElection)
703 send_election(d,work->work_group, work->ElectionCriterion,
704 t-StartupTime,myname);
706 if (work->ElectionCount++ >= 4)
708 /* I won! now what :-) */
709 DEBUG(2,(">>> Won election on %s %s <<<\n",
710 work->work_group,inet_ntoa(d->bcast_ip)));
712 work->RunningElection = False;
713 work->mst_state = MST_POTENTIAL;
715 become_local_master(d, work);
723 /*******************************************************************
724 work out if I win an election
725 ******************************************************************/
726 static BOOL win_election(struct work_record *work,int version,uint32 criterion,
727 int timeup,char *name)
729 int mytimeup = time(NULL) - StartupTime;
730 uint32 mycriterion = work->ElectionCriterion;
732 /* If local master is false then never win
733 in election broadcasts. */
734 if(!lp_local_master())
736 DEBUG(3,("win_election: Losing election as local master == False\n"));
737 return False;
740 DEBUG(4,("election comparison: %x:%x %x:%x %d:%d %s:%s\n",
741 version,ELECTION_VERSION,
742 criterion,mycriterion,
743 timeup,mytimeup,
744 name,myname));
746 if (version > ELECTION_VERSION) return(False);
747 if (version < ELECTION_VERSION) return(True);
749 if (criterion > mycriterion) return(False);
750 if (criterion < mycriterion) return(True);
752 if (timeup > mytimeup) return(False);
753 if (timeup < mytimeup) return(True);
755 if (strcasecmp(myname,name) > 0) return(False);
757 return(True);
761 /*******************************************************************
762 process a election packet
764 An election dynamically decides who will be the master.
765 ******************************************************************/
766 void process_election(struct packet_struct *p,char *buf)
768 struct dgram_packet *dgram = &p->packet.dgram;
769 struct in_addr ip = dgram->header.source_ip;
770 struct subnet_record *d = find_subnet(ip);
771 int version = CVAL(buf,0);
772 uint32 criterion = IVAL(buf,1);
773 int timeup = IVAL(buf,5)/1000;
774 char *name = buf+13;
775 struct work_record *work;
777 if (!d) return;
779 if (ip_equal(d->bcast_ip,wins_ip))
781 DEBUG(0,("Unexpected election request from %s %s on WINS net\n",
782 name, inet_ntoa(p->ip)));
783 return;
786 name[15] = 0;
788 DEBUG(3,("Election request from %s %s vers=%d criterion=%08x timeup=%d\n",
789 name,inet_ntoa(p->ip),version,criterion,timeup));
791 if (same_context(dgram)) return;
793 for (work = d->workgrouplist; work; work = work->next)
795 if (!strequal(work->work_group, myworkgroup))
796 continue;
798 if (win_election(work, version,criterion,timeup,name))
800 if (!work->RunningElection)
802 work->needelection = True;
803 work->ElectionCount=0;
804 work->mst_state = MST_POTENTIAL;
807 else
809 work->needelection = False;
811 if (work->RunningElection || AM_MASTER(work))
813 work->RunningElection = False;
814 DEBUG(3,(">>> Lost election on %s %s <<<\n",
815 work->work_group,inet_ntoa(d->bcast_ip)));
816 if (AM_MASTER(work))
818 unbecome_local_master(d, work, SV_TYPE_MASTER_BROWSER);
826 /****************************************************************************
827 checks whether a browser election is to be run on any workgroup
829 this function really ought to return the time between election
830 packets (which depends on whether samba intends to be a domain
831 master or a master browser) in milliseconds.
833 ***************************************************************************/
834 BOOL check_elections(void)
836 struct subnet_record *d;
837 BOOL run_any_election = False;
839 for (d = FIRST_SUBNET; d; d = NEXT_SUBNET_EXCLUDING_WINS(d))
841 struct work_record *work;
842 for (work = d->workgrouplist; work; work = work->next)
844 run_any_election |= work->RunningElection;
846 if (work->needelection && !work->RunningElection)
848 DEBUG(3,(">>> Starting election on %s %s <<<\n",
849 work->work_group,inet_ntoa(d->bcast_ip)));
850 work->ElectionCount = 0;
851 work->RunningElection = True;
852 work->needelection = False;
856 return run_any_election;