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 /* this file handles asynchronous browse synchronisation requests. The
25 requests are done by forking and putting the result in a file in the
26 locks directory. We do it this way because we don't want nmbd to be
27 blocked waiting for some server to respond on a TCP connection. This
28 also allows us to have more than 1 sync going at once (tridge) */
32 extern fstring local_machine
;
35 struct sync_record
*next
, *prev
;
43 /* a linked list of current sync connections */
44 static struct sync_record
*syncs
;
48 /*******************************************************************
49 This is the NetServerEnum callback.
50 Note sname and comment are in UNIX codepage format.
51 ******************************************************************/
53 static void callback(const char *sname
, uint32 stype
,
54 const char *comment
, void *state
)
56 x_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 ******************************************************************/
65 static void sync_child(char *name
, int nm_type
,
67 struct in_addr ip
, BOOL local
, BOOL servers
,
70 fstring unix_workgroup
;
71 static struct cli_state cli
;
72 uint32 local_type
= local
? SV_TYPE_LOCAL_LIST_ONLY
: 0;
73 struct nmb_name called
, calling
;
75 /* W2K DMB's return empty browse lists on port 445. Use 139.
76 * Patch from Andy Levine andyl@epicrealm.com.
79 if (!cli_initialise(&cli
) || !cli_set_port(&cli
, 139) || !cli_connect(&cli
, name
, &ip
)) {
83 make_nmb_name(&calling
, local_machine
, 0x0);
84 make_nmb_name(&called
, name
, nm_type
);
86 if (!cli_session_request(&cli
, &calling
, &called
)) {
91 if (!cli_negprot(&cli
)) {
96 if (!cli_session_setup(&cli
, "", "", 1, "", 0, workgroup
)) {
101 if (!cli_send_tconX(&cli
, "IPC$", "IPC", "", 1)) {
106 /* All the cli_XX functions take UNIX character set. */
107 fstrcpy(unix_workgroup
, cli
.server_domain
?cli
.server_domain
:workgroup
);
109 /* Fetch a workgroup list. */
110 cli_NetServerEnum(&cli
, unix_workgroup
,
111 local_type
|SV_TYPE_DOMAIN_ENUM
,
114 /* Now fetch a server list. */
116 fstrcpy(unix_workgroup
, workgroup
);
117 cli_NetServerEnum(&cli
, unix_workgroup
,
118 local
?SV_TYPE_LOCAL_LIST_ONLY
:SV_TYPE_ALL
,
125 /*******************************************************************
126 initialise a browse sync with another browse server. Log in on the
127 remote server's SMB port to their IPC$ service, do a NetServerEnum
128 and record the results
129 ******************************************************************/
131 void sync_browse_lists(struct work_record
*work
,
132 char *name
, int nm_type
,
133 struct in_addr ip
, BOOL local
, BOOL servers
)
135 struct sync_record
*s
;
138 START_PROFILE(sync_browse_lists
);
139 /* Check we're not trying to sync with ourselves. This can
140 happen if we are a domain *and* a local master browser. */
143 END_PROFILE(sync_browse_lists
);
147 s
= SMB_MALLOC_P(struct sync_record
);
152 unstrcpy(s
->workgroup
, work
->work_group
);
153 unstrcpy(s
->server
, name
);
156 slprintf(s
->fname
, sizeof(pstring
)-1,
157 "%s/sync.%d", lp_lockdir(), counter
++);
158 all_string_sub(s
->fname
,"//", "/", 0);
162 /* the parent forks and returns, leaving the child to do the
163 actual sync and call END_PROFILE*/
165 if ((s
->pid
= sys_fork())) return;
167 BlockSignals( False
, SIGTERM
);
169 DEBUG(2,("Initiating browse sync for %s to %s(%s)\n",
170 work
->work_group
, name
, inet_ntoa(ip
)));
172 fp
= x_fopen(s
->fname
,O_WRONLY
|O_CREAT
|O_TRUNC
, 0644);
174 END_PROFILE(sync_browse_lists
);
178 sync_child(name
, nm_type
, work
->work_group
, ip
, local
, servers
,
182 END_PROFILE(sync_browse_lists
);
186 /**********************************************************************
187 Handle one line from a completed sync file.
188 **********************************************************************/
190 static void complete_one(struct sync_record
*s
,
191 char *sname
, uint32 stype
, char *comment
)
193 struct work_record
*work
;
194 struct server_record
*servrec
;
196 stype
&= ~SV_TYPE_LOCAL_LIST_ONLY
;
198 if (stype
& SV_TYPE_DOMAIN_ENUM
) {
199 /* See if we can find the workgroup on this subnet. */
200 if((work
=find_workgroup_on_subnet(unicast_subnet
, sname
))) {
201 /* We already know about this workgroup -
203 update_workgroup_ttl(work
,lp_max_ttl());
205 /* Create the workgroup on the subnet. */
206 work
= create_workgroup_on_subnet(unicast_subnet
,
207 sname
, lp_max_ttl());
209 /* remember who the master is */
210 unstrcpy(work
->local_master_browser_name
, comment
);
216 work
= find_workgroup_on_subnet(unicast_subnet
, s
->workgroup
);
218 DEBUG(3,("workgroup %s doesn't exist on unicast subnet?\n",
223 if ((servrec
= find_server_in_workgroup( work
, sname
))) {
224 /* Check that this is not a locally known
225 server - if so ignore the entry. */
226 if(!(servrec
->serv
.type
& SV_TYPE_LOCAL_LIST_ONLY
)) {
227 /* We already know about this server - update
229 update_server_ttl(servrec
, lp_max_ttl());
230 /* Update the type. */
231 servrec
->serv
.type
= stype
;
236 /* Create the server in the workgroup. */
237 create_server_on_workgroup(work
, sname
,stype
, lp_max_ttl(), comment
);
240 /**********************************************************************
241 Read the completed sync info.
242 **********************************************************************/
244 static void complete_sync(struct sync_record
*s
)
247 unstring server
, type_str
;
254 f
= x_fopen(s
->fname
,O_RDONLY
, 0);
261 if (!fgets_slash(line
,sizeof(pstring
),f
))
266 if (!next_token(&ptr
,server
,NULL
,sizeof(server
)) ||
267 !next_token(&ptr
,type_str
,NULL
, sizeof(type_str
)) ||
268 !next_token(&ptr
,comment
,NULL
, sizeof(comment
))) {
272 sscanf(type_str
, "%X", &type
);
274 complete_one(s
, server
, type
, comment
);
283 DEBUG(2,("sync with %s(%s) for workgroup %s completed (%d records)\n",
284 s
->server
, inet_ntoa(s
->ip
), s
->workgroup
, count
));
287 /**********************************************************************
288 Check for completion of any of the child processes.
289 **********************************************************************/
291 void sync_check_completion(void)
293 struct sync_record
*s
, *next
;
295 for (s
=syncs
;s
;s
=next
) {
297 if (!process_exists(s
->pid
)) {
298 /* it has completed - grab the info */
300 DLIST_REMOVE(syncs
, s
);