removed two unneeded files after Richard backed out these changes.
[Samba.git] / source / nmbd / nmbd_synclists.c
blobc8dac82aa15142edd537ea200c8468d5582b2e3b
1 /*
2 Unix SMB/Netbios implementation.
3 Version 1.9.
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) */
31 #include "includes.h"
32 #include "smb.h"
34 struct sync_record {
35 struct sync_record *next, *prev;
36 fstring workgroup;
37 fstring server;
38 pstring fname;
39 struct in_addr ip;
40 pid_t pid;
43 /* a linked list of current sync connections */
44 static struct sync_record *syncs;
46 static FILE *fp;
48 /*******************************************************************
49 This is the NetServerEnum callback.
50 Note sname and comment are in UNIX codepage format.
51 ******************************************************************/
52 static void callback(const char *sname, uint32 stype,
53 const char *comment, void *state)
55 fprintf(fp,"\"%s\" %08X \"%s\"\n", sname, stype, comment);
58 /*******************************************************************
59 Synchronise browse lists with another browse server.
60 Log in on the remote server's SMB port to their IPC$ service,
61 do a NetServerEnum and record the results in fname
62 ******************************************************************/
63 static void sync_child(char *name, int nm_type,
64 char *workgroup,
65 struct in_addr ip, BOOL local, BOOL servers,
66 char *fname)
68 extern fstring local_machine;
69 fstring unix_workgroup;
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)) {
75 return;
78 make_nmb_name(&calling, local_machine, 0x0);
79 make_nmb_name(&called , name , nm_type);
81 if (!cli_session_request(&cli, &calling, &called))
83 cli_shutdown(&cli);
84 return;
87 if (!cli_negprot(&cli)) {
88 cli_shutdown(&cli);
89 return;
92 if (!cli_session_setup(&cli, "", "", 1, "", 0, workgroup)) {
93 cli_shutdown(&cli);
94 return;
97 if (!cli_send_tconX(&cli, "IPC$", "IPC", "", 1)) {
98 cli_shutdown(&cli);
99 return;
102 /* All the cli_XX functions take UNIX character set. */
103 fstrcpy(unix_workgroup, cli.server_domain?cli.server_domain:workgroup);
104 dos_to_unix(unix_workgroup);
106 /* Fetch a workgroup list. */
107 cli_NetServerEnum(&cli, unix_workgroup,
108 local_type|SV_TYPE_DOMAIN_ENUM,
109 callback, NULL);
111 /* Now fetch a server list. */
112 if (servers) {
113 fstrcpy(unix_workgroup, workgroup);
114 dos_to_unix(unix_workgroup);
115 cli_NetServerEnum(&cli, unix_workgroup,
116 local?SV_TYPE_LOCAL_LIST_ONLY:SV_TYPE_ALL,
117 callback, NULL);
120 cli_shutdown(&cli);
124 /*******************************************************************
125 initialise a browse sync with another browse server. Log in on the
126 remote server's SMB port to their IPC$ service, do a NetServerEnum
127 and record the results
128 ******************************************************************/
129 void sync_browse_lists(struct work_record *work,
130 char *name, int nm_type,
131 struct in_addr ip, BOOL local, BOOL servers)
133 struct sync_record *s;
134 static int counter;
136 START_PROFILE(sync_browse_lists);
137 /* Check we're not trying to sync with ourselves. This can
138 happen if we are a domain *and* a local master browser. */
139 if (ismyip(ip)) {
140 done:
141 END_PROFILE(sync_browse_lists);
142 return;
145 s = (struct sync_record *)malloc(sizeof(*s));
146 if (!s) goto done;
148 ZERO_STRUCTP(s);
150 fstrcpy(s->workgroup, work->work_group);
151 fstrcpy(s->server, name);
152 s->ip = ip;
154 slprintf(s->fname, sizeof(pstring)-1,
155 "%s/sync.%d", lp_lockdir(), counter++);
156 all_string_sub(s->fname,"//", "/", 0);
158 DLIST_ADD(syncs, s);
160 /* the parent forks and returns, leaving the child to do the
161 actual sync and call END_PROFILE*/
162 CatchChild();
163 if ((s->pid = sys_fork())) return;
165 BlockSignals( False, SIGTERM );
167 DEBUG(2,("Initiating browse sync for %s to %s(%s)\n",
168 work->work_group, name, inet_ntoa(ip)));
170 fp = sys_fopen(s->fname,"w");
171 if (!fp) {
172 END_PROFILE(sync_browse_lists);
173 _exit(1);
176 sync_child(name, nm_type, work->work_group, ip, local, servers,
177 s->fname);
179 fclose(fp);
180 END_PROFILE(sync_browse_lists);
181 _exit(0);
184 /**********************************************************************
185 handle one line from a completed sync file
186 **********************************************************************/
187 static void complete_one(struct sync_record *s,
188 char *sname, uint32 stype, char *comment)
190 struct work_record *work;
191 struct server_record *servrec;
193 stype &= ~SV_TYPE_LOCAL_LIST_ONLY;
195 if (stype & SV_TYPE_DOMAIN_ENUM) {
196 /* See if we can find the workgroup on this subnet. */
197 if((work=find_workgroup_on_subnet(unicast_subnet, sname))) {
198 /* We already know about this workgroup -
199 update the ttl. */
200 update_workgroup_ttl(work,lp_max_ttl());
201 } else {
202 /* Create the workgroup on the subnet. */
203 work = create_workgroup_on_subnet(unicast_subnet,
204 sname, lp_max_ttl());
205 if (work) {
206 /* remember who the master is */
207 fstrcpy(work->local_master_browser_name,
208 comment);
211 return;
214 work = find_workgroup_on_subnet(unicast_subnet, s->workgroup);
215 if (!work) {
216 DEBUG(3,("workgroup %s doesn't exist on unicast subnet?\n",
217 s->workgroup));
218 return;
221 if ((servrec = find_server_in_workgroup( work, sname))) {
222 /* Check that this is not a locally known
223 server - if so ignore the entry. */
224 if(!(servrec->serv.type & SV_TYPE_LOCAL_LIST_ONLY)) {
225 /* We already know about this server - update
226 the ttl. */
227 update_server_ttl(servrec, lp_max_ttl());
228 /* Update the type. */
229 servrec->serv.type = stype;
231 return;
234 /* Create the server in the workgroup. */
235 create_server_on_workgroup(work, sname,stype, lp_max_ttl(), comment);
239 /**********************************************************************
240 read the completed sync info
241 **********************************************************************/
242 static void complete_sync(struct sync_record *s)
244 FILE *f;
245 fstring server, type_str;
246 unsigned type;
247 pstring comment;
248 pstring line;
249 char *ptr;
250 int count=0;
252 f = sys_fopen(s->fname,"r");
254 if (!f) return;
256 while (!feof(f)) {
258 if (!fgets_slash(line,sizeof(pstring),f)) continue;
260 ptr = line;
262 /* The line is written in UNIX character set. Convert to DOS codepage. */
263 unix_to_dos(line);
265 if (!next_token(&ptr,server,NULL,sizeof(server)) ||
266 !next_token(&ptr,type_str,NULL, sizeof(type_str)) ||
267 !next_token(&ptr,comment,NULL, sizeof(comment))) {
268 continue;
271 sscanf(type_str, "%X", &type);
273 complete_one(s, server, type, comment);
275 count++;
278 fclose(f);
280 unlink(s->fname);
282 DEBUG(2,("sync with %s(%s) for workgroup %s completed (%d records)\n",
283 s->server, inet_ntoa(s->ip), s->workgroup, count));
286 /**********************************************************************
287 check for completion of any of the child processes
288 **********************************************************************/
289 void sync_check_completion(void)
291 struct sync_record *s, *next;
293 for (s=syncs;s;s=next) {
294 next = s->next;
295 if (!process_exists(s->pid)) {
296 /* it has completed - grab the info */
297 complete_sync(s);
298 DLIST_REMOVE(syncs, s);
299 ZERO_STRUCTP(s);
300 SAFE_FREE(s);