2 Unix SMB/Netbios implementation.
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.
23 14 jan 96: lkcl@pires.co.uk
24 added multiple workgroup domain master support
33 extern int DEBUGLEVEL
;
35 extern struct in_addr wins_ip
;
37 /* this is our browse master/backup cache database */
38 static struct browse_cache_record
*browserlist
= NULL
;
41 /***************************************************************************
42 add a browser into the list
43 **************************************************************************/
44 static void add_browse_cache(struct browse_cache_record
*b
)
46 struct browse_cache_record
*b2
;
56 for (b2
= browserlist
; b2
->next
; b2
= b2
->next
) ;
64 /*******************************************************************
65 remove old browse entries
66 ******************************************************************/
67 void expire_browse_cache(time_t t
)
69 struct browse_cache_record
*b
;
70 struct browse_cache_record
*nextb
;
72 /* expire old entries in the serverlist */
73 for (b
= browserlist
; b
; b
= nextb
)
75 if (b
->synced
&& b
->sync_time
< t
)
77 DEBUG(3,("Removing dead cached browser %s\n",b
->name
));
80 if (b
->prev
) b
->prev
->next
= b
->next
;
81 if (b
->next
) b
->next
->prev
= b
->prev
;
83 if (browserlist
== b
) browserlist
= b
->next
;
94 /****************************************************************************
96 ****************************************************************************/
97 struct browse_cache_record
*add_browser_entry(char *name
, int type
, char *wg
,
98 time_t ttl
, struct subnet_record
*d
,
99 struct in_addr ip
, BOOL local
)
103 struct browse_cache_record
*b
;
105 /* search for the entry: if it's already in the cache, update that entry */
106 for (b
= browserlist
; b
; b
= b
->next
)
108 if (ip_equal(ip
,b
->ip
) && strequal(b
->group
, wg
)) break;
113 /* entries get left in the cache for a while. this stops sync'ing too
114 often if the network is large */
115 DEBUG(4, ("browser %s %s %s already sync'd at time %d\n",
116 b
->name
, b
->group
, inet_ntoa(b
->ip
), b
->sync_time
));
123 b
= (struct browse_cache_record
*)malloc(sizeof(*b
));
125 if (!b
) return(NULL
);
127 bzero((char *)b
,sizeof(*b
));
130 /* update the entry */
131 ttl
= time(NULL
)+ttl
;
133 StrnCpy(b
->name
,name
,sizeof(b
->name
)-1);
134 StrnCpy(b
->group
,wg
,sizeof(b
->group
)-1);
140 b
->local
= local
; /* local server list sync or complete sync required */
143 if (newentry
|| ttl
< b
->sync_time
)
151 DEBUG(3,("Added cache entry %s %s(%2x) %s ttl %d\n",
152 wg
, name
, type
, inet_ntoa(ip
),ttl
));
156 DEBUG(3,("Updated cache entry %s %s(%2x) %s ttl %d\n",
157 wg
, name
, type
, inet_ntoa(ip
),ttl
));
164 /****************************************************************************
165 find a server responsible for a workgroup, and sync browse lists
166 **************************************************************************/
167 static void start_sync_browse_entry(struct browse_cache_record
*b
)
169 struct subnet_record
*d
= b
->subnet
;
170 struct work_record
*work
;
172 /* Check panic conditions - these should not be true. */
173 if(b
->subnet
!= wins_client_subnet
) {
175 ("start_sync_browse_entry: ERROR sync requested on non-WINS subnet.\n"));
179 if (!(work
= find_workgroupstruct(d
, b
->group
, False
))) {
180 DEBUG(0, ("start_sync_browse_entry: failed to get a \
181 workgroup for a browse cache entry workgroup %s, server %s\n",
186 DEBUG(4, ("start_sync_browse_entry: Initiating %s sync with %s<0x20>, \
188 b
->local
? "local" : "remote", b
->name
, b
->group
));
190 /* first check whether the server we intend to sync with exists. if it
191 doesn't, the server must have died. o dear. */
193 /* see response_netbios_packet() or expire_netbios_response_entries() */
194 /* We cheat here by using the my_comment field of the response_record
195 struct as the workgroup name we are going to do the sync for.
196 This is because the reply packet doesn't include the workgroup, but
197 we need it when the reply comes back.
199 queue_netbios_packet(d
,ClientNMB
,NMB_QUERY
,
200 b
->local
?NAME_QUERY_SYNC_LOCAL
:NAME_QUERY_SYNC_REMOTE
,
201 b
->name
,0x20,0,0,0,NULL
,b
->group
,
202 False
,False
,b
->ip
,b
->ip
, 0);
208 /****************************************************************************
209 search through browser list for an entry to sync with
210 **************************************************************************/
211 void do_browser_lists(time_t t
)
213 struct browse_cache_record
*b
;
214 static time_t last
= 0;
218 DEBUG(9,("do_browser_lists: returning due to t(%d) - last(%d) < 20\n",
220 return; /* don't do too many of these at once! */
221 /* XXXX equally this period should not be too long
222 the server may die in the intervening gap */
226 /* pick any entry in the list, preferably one whose time is up */
227 for (b
= browserlist
; b
&& b
->next
; b
= b
->next
)
229 if (b
->sync_time
< t
&& b
->synced
== False
) break;
234 /* sync with the selected entry then remove some dead entries */
235 DEBUG(4,("do_browser_lists: Initiating sync with %s, workgroup %s\n",
237 start_sync_browse_entry(b
);
241 DEBUG(9, ("do_browser_lists: no entries to sync.\n"));
244 expire_browse_cache(t
- 60);