1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347
|
/*
Unix SMB/Netbios implementation.
Version 1.9.
NBT netbios routines and daemon - version 2
Copyright (C) Andrew Tridgell 1994-1998
Copyright (C) Luke Kenneth Casson Leighton 1994-1998
Copyright (C) Jeremy Allison 1994-1998
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*/
#include "includes.h"
#include "smb.h"
extern int ClientNMB;
extern pstring global_myname;
extern fstring global_myworkgroup;
extern char **my_netbios_names;
extern uint16 samba_nb_type;
int workgroup_count = 0; /* unique index key: one for each workgroup */
/****************************************************************************
Add a workgroup into the list.
**************************************************************************/
static void add_workgroup(struct subnet_record *subrec, struct work_record *work)
{
work->subnet = subrec;
DLIST_ADD(subrec->workgrouplist, work);
subrec->work_changed = True;
}
/****************************************************************************
Create an empty workgroup.
**************************************************************************/
static struct work_record *create_workgroup(const char *name, int ttl)
{
struct work_record *work;
struct subnet_record *subrec;
int t = -1;
if((work = (struct work_record *)malloc(sizeof(*work))) == NULL)
{
DEBUG(0,("create_workgroup: malloc fail !\n"));
return NULL;
}
memset((char *)work, '\0', sizeof(*work));
StrnCpy(work->work_group,name,sizeof(work->work_group)-1);
work->serverlist = NULL;
work->RunningElection = False;
work->ElectionCount = 0;
work->announce_interval = 0;
work->needelection = False;
work->needannounce = True;
work->lastannounce_time = time(NULL);
work->mst_state = lp_local_master() ? MST_POTENTIAL : MST_NONE;
work->dom_state = DOMAIN_NONE;
work->log_state = LOGON_NONE;
work->death_time = (ttl != PERMANENT_TTL) ? time(NULL)+(ttl*3) : PERMANENT_TTL;
/* Make sure all token representations of workgroups are unique. */
for (subrec = FIRST_SUBNET; subrec && (t == -1);
subrec = NEXT_SUBNET_INCLUDING_UNICAST(subrec))
{
struct work_record *w;
for (w = subrec->workgrouplist; w && t == -1; w = w->next)
{
if (strequal(w->work_group, work->work_group))
t = w->token;
}
}
if (t == -1)
work->token = ++workgroup_count;
else
work->token = t;
/* No known local master browser as yet. */
*work->local_master_browser_name = '\0';
/* No known domain master browser as yet. */
*work->dmb_name.name = '\0';
zero_ip(&work->dmb_addr);
/* WfWg uses 01040b01 */
/* Win95 uses 01041501 */
/* NTAS uses ???????? */
work->ElectionCriterion = (MAINTAIN_LIST)|(BROWSER_ELECTION_VERSION<<8);
work->ElectionCriterion |= (lp_os_level() << 24);
if (lp_domain_master())
work->ElectionCriterion |= 0x80;
return work;
}
/*******************************************************************
Remove a workgroup.
******************************************************************/
static struct work_record *remove_workgroup_from_subnet(struct subnet_record *subrec,
struct work_record *work)
{
struct work_record *ret_work = NULL;
DEBUG(3,("remove_workgroup: Removing workgroup %s\n", work->work_group));
ret_work = work->next;
remove_all_servers(work);
if (!work->serverlist)
{
if (work->prev)
work->prev->next = work->next;
if (work->next)
work->next->prev = work->prev;
if (subrec->workgrouplist == work)
subrec->workgrouplist = work->next;
ZERO_STRUCTP(work);
free((char *)work);
}
subrec->work_changed = True;
return ret_work;
}
/****************************************************************************
Find a workgroup in the workgroup list of a subnet.
**************************************************************************/
struct work_record *find_workgroup_on_subnet(struct subnet_record *subrec,
const char *name)
{
struct work_record *ret;
DEBUG(4, ("find_workgroup_on_subnet: workgroup search for %s on subnet %s: ",
name, subrec->subnet_name));
for (ret = subrec->workgrouplist; ret; ret = ret->next)
{
if (!strcmp(ret->work_group,name))
{
DEBUGADD(4, ("found.\n"));
return(ret);
}
}
DEBUGADD(4, ("not found.\n"));
return NULL;
}
/****************************************************************************
Create a workgroup in the workgroup list of the subnet.
**************************************************************************/
struct work_record *create_workgroup_on_subnet(struct subnet_record *subrec,
const char *name, int ttl)
{
struct work_record *work = NULL;
DEBUG(4,("create_workgroup_on_subnet: creating group %s on subnet %s\n",
name, subrec->subnet_name));
if ((work = create_workgroup(name, ttl)))
{
add_workgroup(subrec, work);
subrec->work_changed = True;
return(work);
}
return NULL;
}
/****************************************************************************
Update a workgroup ttl.
**************************************************************************/
void update_workgroup_ttl(struct work_record *work, int ttl)
{
if(work->death_time != PERMANENT_TTL)
work->death_time = time(NULL)+(ttl*3);
work->subnet->work_changed = True;
}
/****************************************************************************
Fail function called if we cannot register the WORKGROUP<0> and
WORKGROUP<1e> names on the net.
**************************************************************************/
static void fail_register(struct subnet_record *subrec, struct response_record *rrec,
struct nmb_name *nmbname)
{
DEBUG(0,("fail_register: Failed to register name %s on subnet %s.\n",
nmb_namestr(nmbname), subrec->subnet_name));
}
/****************************************************************************
If the workgroup is our primary workgroup, add the required names to it.
**************************************************************************/
void initiate_myworkgroup_startup(struct subnet_record *subrec, struct work_record *work)
{
int i;
if(!strequal(global_myworkgroup, work->work_group))
return;
/* If this is a broadcast subnet then start elections on it
if we are so configured. */
if ((subrec != unicast_subnet) && (subrec != remote_broadcast_subnet) &&
(subrec != wins_server_subnet) && lp_preferred_master() &&
lp_local_master())
{
DEBUG(3, ("initiate_myworkgroup_startup: preferred master startup for \
workgroup %s on subnet %s\n", work->work_group, subrec->subnet_name));
work->needelection = True;
work->ElectionCriterion |= (1<<3);
}
/* Register the WORKGROUP<0> and WORKGROUP<1e> names on the network. */
register_name(subrec,global_myworkgroup,0x0,samba_nb_type|NB_GROUP,
NULL,
fail_register,NULL);
register_name(subrec,global_myworkgroup,0x1e,samba_nb_type|NB_GROUP,
NULL,
fail_register,NULL);
for( i = 0; my_netbios_names[i]; i++)
{
char *name = my_netbios_names[i];
int stype = lp_default_server_announce() | (lp_local_master() ?
SV_TYPE_POTENTIAL_BROWSER : 0 );
if(!strequal(global_myname, name))
stype &= ~(SV_TYPE_MASTER_BROWSER|SV_TYPE_POTENTIAL_BROWSER|
SV_TYPE_DOMAIN_MASTER|SV_TYPE_DOMAIN_MEMBER);
create_server_on_workgroup(work,name,stype|SV_TYPE_LOCAL_LIST_ONLY,
PERMANENT_TTL,
string_truncate(lp_serverstring(), MAX_SERVER_STRING_LENGTH));
DEBUG(3,("initiate_myworkgroup_startup: Added server name entry %s \
on subnet %s\n", name, subrec->subnet_name));
}
}
/****************************************************************************
Dump a copy of the workgroup database into the log file.
**************************************************************************/
void dump_workgroups(BOOL force_write)
{
struct subnet_record *subrec;
int debuglevel = force_write ? 0 : 4;
for (subrec = FIRST_SUBNET; subrec; subrec = NEXT_SUBNET_INCLUDING_UNICAST(subrec))
{
if (subrec->workgrouplist)
{
struct work_record *work;
if( DEBUGLVL( debuglevel ) )
{
dbgtext( "dump_workgroups()\n " );
dbgtext( "dump workgroup on subnet %15s: ", subrec->subnet_name );
dbgtext( "netmask=%15s:\n", inet_ntoa(subrec->mask_ip) );
}
for (work = subrec->workgrouplist; work; work = work->next)
{
DEBUGADD( debuglevel, ( "\t%s(%d) current master browser = %s\n",
work->work_group,
work->token,
*work->local_master_browser_name
? work->local_master_browser_name : "UNKNOWN" ) );
if (work->serverlist)
{
struct server_record *servrec;
for (servrec = work->serverlist; servrec; servrec = servrec->next)
{
DEBUGADD( debuglevel, ( "\t\t%s %8x (%s)\n",
servrec->serv.name,
servrec->serv.type,
servrec->serv.comment ) );
}
}
}
}
}
}
/****************************************************************************
Expire any dead servers on all workgroups. If the workgroup has expired
remove it.
**************************************************************************/
void expire_workgroups_and_servers(time_t t)
{
struct subnet_record *subrec;
for (subrec = FIRST_SUBNET; subrec; subrec = NEXT_SUBNET_INCLUDING_UNICAST(subrec))
{
struct work_record *work;
struct work_record *nextwork;
for (work = subrec->workgrouplist; work; work = nextwork)
{
nextwork = work->next;
expire_servers(work, t);
if ((work->serverlist == NULL) && (work->death_time != PERMANENT_TTL) &&
((t == -1) || (work->death_time < t)))
{
DEBUG(3,("expire_workgroups_and_servers: Removing timed out workgroup %s\n",
work->work_group));
remove_workgroup_from_subnet(subrec, work);
}
}
}
}
|