2 Unix SMB/Netbios implementation.
4 NBT netbios routines and daemon - version 2
5 Copyright (C) Andrew Tridgell 1994-1998
6 Copyright (C) Luke Kenneth Casson Leighton 1994-1998
7 Copyright (C) Jeremy Allison 1994-1998
9 This program is free software; you can redistribute it and/or modify
10 it under the terms of the GNU General Public License as published by
11 the Free Software Foundation; either version 2 of the License, or
12 (at your option) any later version.
14 This program is distributed in the hope that it will be useful,
15 but WITHOUT ANY WARRANTY; without even the implied warranty of
16 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 GNU General Public License for more details.
19 You should have received a copy of the GNU General Public License
20 along with this program; if not, write to the Free Software
21 Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
25 /* this file handles asynchronous browse synchronisation requests. The
26 requests are done by forking and putting the result in a file in the
27 locks directory. We do it this way because we don't want nmbd to be
28 blocked waiting for some server to respond on a TCP connection. This
29 also allows us to have more than 1 sync going at once (tridge) */
34 extern int DEBUGLEVEL
;
37 struct sync_record
*next
, *prev
;
45 /* a linked list of current sync connections */
46 static struct sync_record
*syncs
;
50 /*******************************************************************
51 This is the NetServerEnum callback.
52 ******************************************************************/
53 static void callback(const char *sname
, uint32 stype
, const char *comment
)
55 fprintf(fp
,"\"%s\" %08X \"%s\"\n", sname
, stype
, comment
);
59 /*******************************************************************
60 Synchronise browse lists with another browse server.
61 Log in on the remote server's SMB port to their IPC$ service,
62 do a NetServerEnum and record the results in fname
63 ******************************************************************/
64 static void sync_child(char *name
, int nm_type
,
66 struct in_addr ip
, BOOL local
, BOOL servers
,
69 extern fstring local_machine
;
70 static struct cli_state cli
;
71 uint32 local_type
= local
? SV_TYPE_LOCAL_LIST_ONLY
: 0;
72 struct nmb_name called
, calling
;
74 if (!cli_initialise(&cli
) || !cli_connect(&cli
, name
, &ip
)) {
79 make_nmb_name(&calling
, local_machine
, 0x0);
80 make_nmb_name(&called
, name
, nm_type
);
82 if (!cli_session_request(&cli
, &calling
, &called
))
89 if (!cli_negprot(&cli
)) {
94 if (!cli_session_setup(&cli
, "", "", 1, "", 0, workgroup
)) {
99 if (!cli_send_tconX(&cli
, "IPC$", "IPC", "", 1)) {
104 /* Fetch a workgroup list. */
105 cli_NetServerEnum(&cli
, cli
.server_domain
?cli
.server_domain
:workgroup
,
106 local_type
|SV_TYPE_DOMAIN_ENUM
,
109 /* Now fetch a server list. */
111 cli_NetServerEnum(&cli
, workgroup
,
112 local
?SV_TYPE_LOCAL_LIST_ONLY
:SV_TYPE_ALL
,
120 /*******************************************************************
121 initialise a browse sync with another browse server. Log in on the
122 remote server's SMB port to their IPC$ service, do a NetServerEnum
123 and record the results
124 ******************************************************************/
125 void sync_browse_lists(struct work_record
*work
,
126 char *name
, int nm_type
,
127 struct in_addr ip
, BOOL local
, BOOL servers
)
129 struct sync_record
*s
;
132 /* Check we're not trying to sync with ourselves. This can
133 happen if we are a domain *and* a local master browser. */
138 s
= (struct sync_record
*)malloc(sizeof(*s
));
143 fstrcpy(s
->workgroup
, work
->work_group
);
144 fstrcpy(s
->server
, name
);
147 slprintf(s
->fname
, sizeof(pstring
)-1,
148 "%s/sync.%d", lp_lockdir(), counter
++);
149 all_string_sub(s
->fname
,"//", "/", 0);
153 /* the parent forks and returns, leaving the child to do the
156 if ((s
->pid
= fork())) return;
158 BlockSignals( False
, SIGTERM
);
160 DEBUG(2,("Initiating browse sync for %s to %s(%s)\n",
161 work
->work_group
, name
, inet_ntoa(ip
)));
163 fp
= sys_fopen(s
->fname
,"w");
166 sync_child(name
, nm_type
, work
->work_group
, ip
, local
, servers
,
173 /**********************************************************************
174 handle one line from a completed sync file
175 **********************************************************************/
176 static void complete_one(struct sync_record
*s
,
177 char *sname
, uint32 stype
, char *comment
)
179 struct work_record
*work
;
180 struct server_record
*servrec
;
182 stype
&= ~SV_TYPE_LOCAL_LIST_ONLY
;
184 if (stype
& SV_TYPE_DOMAIN_ENUM
) {
185 /* See if we can find the workgroup on this subnet. */
186 if((work
=find_workgroup_on_subnet(unicast_subnet
, sname
))) {
187 /* We already know about this workgroup -
189 update_workgroup_ttl(work
,lp_max_ttl());
191 /* Create the workgroup on the subnet. */
192 work
= create_workgroup_on_subnet(unicast_subnet
,
193 sname
, lp_max_ttl());
195 /* remember who the master is */
196 fstrcpy(work
->local_master_browser_name
,
203 work
= find_workgroup_on_subnet(unicast_subnet
, s
->workgroup
);
205 DEBUG(3,("workgroup %s doesn't exist on unicast subnet?\n",
210 if ((servrec
= find_server_in_workgroup( work
, sname
))) {
211 /* Check that this is not a locally known
212 server - if so ignore the entry. */
213 if(!(servrec
->serv
.type
& SV_TYPE_LOCAL_LIST_ONLY
)) {
214 /* We already know about this server - update
216 update_server_ttl(servrec
, lp_max_ttl());
217 /* Update the type. */
218 servrec
->serv
.type
= stype
;
223 /* Create the server in the workgroup. */
224 create_server_on_workgroup(work
, sname
,stype
, lp_max_ttl(), comment
);
228 /**********************************************************************
229 read the completed sync info
230 **********************************************************************/
231 static void complete_sync(struct sync_record
*s
)
234 fstring server
, type_str
;
241 f
= sys_fopen(s
->fname
,"r");
247 if (!fgets_slash(line
,sizeof(pstring
),f
)) continue;
251 if (!next_token(&ptr
,server
,NULL
,sizeof(server
)) ||
252 !next_token(&ptr
,type_str
,NULL
, sizeof(type_str
)) ||
253 !next_token(&ptr
,comment
,NULL
, sizeof(comment
))) {
257 sscanf(type_str
, "%X", &type
);
259 complete_one(s
, server
, type
, comment
);
268 DEBUG(2,("sync with %s(%s) for workgroup %s completed (%d records)\n",
269 s
->server
, inet_ntoa(s
->ip
), s
->workgroup
, count
));
272 /**********************************************************************
273 check for completion of any of the child processes
274 **********************************************************************/
275 void sync_check_completion(void)
277 struct sync_record
*s
, *next
;
279 for (s
=syncs
;s
;s
=next
) {
281 if (!process_exists(s
->pid
)) {
282 /* it has completed - grab the info */
284 DLIST_REMOVE(syncs
, s
);