Merge commit 'release-4-0-0alpha15' into master4-tmp
[kai/samba-autobuild/.git] / source3 / nmbd / nmbd_synclists.c
1 /* 
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
7
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 3 of the License, or
11    (at your option) any later version.
12
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.
17
18    You should have received a copy of the GNU General Public License
19    along with this program.  If not, see <http://www.gnu.org/licenses/>.
20 */
21
22 /* this file handles asynchronous browse synchronisation requests. The
23    requests are done by forking and putting the result in a file in the
24    locks directory. We do it this way because we don't want nmbd to be
25    blocked waiting for some server to respond on a TCP connection. This
26    also allows us to have more than 1 sync going at once (tridge) */
27
28 #include "includes.h"
29 #include "system/filesys.h"
30 #include "../librpc/gen_ndr/svcctl.h"
31 #include "nmbd/nmbd.h"
32 #include "libsmb/libsmb.h"
33 #include "libsmb/clirap.h"
34 #include "smbprofile.h"
35
36 struct sync_record {
37         struct sync_record *next, *prev;
38         unstring workgroup;
39         unstring server;
40         char *fname;
41         struct in_addr ip;
42         pid_t pid;
43 };
44
45 /* a linked list of current sync connections */
46 static struct sync_record *syncs;
47
48 static XFILE *fp;
49
50 /*******************************************************************
51   This is the NetServerEnum callback.
52   Note sname and comment are in UNIX codepage format.
53   ******************************************************************/
54
55 static void callback(const char *sname, uint32 stype, 
56                      const char *comment, void *state)
57 {
58         x_fprintf(fp,"\"%s\" %08X \"%s\"\n", sname, stype, comment);
59 }
60
61 /*******************************************************************
62   Synchronise browse lists with another browse server.
63   Log in on the remote server's SMB port to their IPC$ service,
64   do a NetServerEnum and record the results in fname
65 ******************************************************************/
66
67 static void sync_child(char *name, int nm_type, 
68                        char *workgroup,
69                        struct in_addr ip, bool local, bool servers,
70                        char *fname)
71 {
72         fstring unix_workgroup;
73         struct cli_state *cli;
74         uint32 local_type = local ? SV_TYPE_LOCAL_LIST_ONLY : 0;
75         struct sockaddr_storage ss;
76         NTSTATUS status;
77
78         /* W2K DMB's return empty browse lists on port 445. Use 139.
79          * Patch from Andy Levine andyl@epicrealm.com.
80          */
81
82         in_addr_to_sockaddr_storage(&ss, ip);
83
84         status = cli_connect_nb(name, &ss, 139, nm_type,
85                                 get_local_machine_name(), Undefined,
86                                 &cli);
87         if (!NT_STATUS_IS_OK(status)) {
88                 return;
89         }
90
91         status = cli_negprot(cli);
92         if (!NT_STATUS_IS_OK(status)) {
93                 cli_shutdown(cli);
94                 return;
95         }
96
97         if (!NT_STATUS_IS_OK(cli_session_setup(cli, "", "", 1, "", 0,
98                                                workgroup))) {
99                 cli_shutdown(cli);
100                 return;
101         }
102
103         if (!NT_STATUS_IS_OK(cli_tcon_andx(cli, "IPC$", "IPC", "", 1))) {
104                 cli_shutdown(cli);
105                 return;
106         }
107
108         /* All the cli_XX functions take UNIX character set. */
109         fstrcpy(unix_workgroup, cli->server_domain ? cli->server_domain : workgroup);
110
111         /* Fetch a workgroup list. */
112         cli_NetServerEnum(cli, unix_workgroup,
113                           local_type|SV_TYPE_DOMAIN_ENUM, 
114                           callback, NULL);
115
116         /* Now fetch a server list. */
117         if (servers) {
118                 fstrcpy(unix_workgroup, workgroup);
119                 cli_NetServerEnum(cli, unix_workgroup, 
120                                   local?SV_TYPE_LOCAL_LIST_ONLY:SV_TYPE_ALL,
121                                   callback, NULL);
122         }
123
124         cli_shutdown(cli);
125 }
126
127 /*******************************************************************
128   initialise a browse sync with another browse server.  Log in on the
129   remote server's SMB port to their IPC$ service, do a NetServerEnum
130   and record the results
131 ******************************************************************/
132
133 void sync_browse_lists(struct work_record *work,
134                        char *name, int nm_type, 
135                        struct in_addr ip, bool local, bool servers)
136 {
137         struct sync_record *s;
138         static int counter;
139
140         START_PROFILE(sync_browse_lists);
141         /* Check we're not trying to sync with ourselves. This can
142            happen if we are a domain *and* a local master browser. */
143         if (ismyip_v4(ip)) {
144 done:
145                 END_PROFILE(sync_browse_lists);
146                 return;
147         }
148
149         s = SMB_MALLOC_P(struct sync_record);
150         if (!s) goto done;
151
152         ZERO_STRUCTP(s);
153
154         unstrcpy(s->workgroup, work->work_group);
155         unstrcpy(s->server, name);
156         s->ip = ip;
157
158         if (asprintf(&s->fname, "%s/sync.%d", lp_lockdir(), counter++) < 0) {
159                 SAFE_FREE(s);
160                 goto done;
161         }
162         /* Safe to use as 0 means no size change. */
163         all_string_sub(s->fname,"//", "/", 0);
164
165         DLIST_ADD(syncs, s);
166
167         /* the parent forks and returns, leaving the child to do the
168            actual sync and call END_PROFILE*/
169         CatchChild();
170         if ((s->pid = sys_fork())) return;
171
172         BlockSignals( False, SIGTERM );
173
174         DEBUG(2,("Initiating browse sync for %s to %s(%s)\n",
175                  work->work_group, name, inet_ntoa(ip)));
176
177         fp = x_fopen(s->fname,O_WRONLY|O_CREAT|O_TRUNC, 0644);
178         if (!fp) {
179                 END_PROFILE(sync_browse_lists);
180                 _exit(1);
181         }
182
183         sync_child(name, nm_type, work->work_group, ip, local, servers,
184                    s->fname);
185
186         x_fclose(fp);
187         END_PROFILE(sync_browse_lists);
188         _exit(0);
189 }
190
191 /**********************************************************************
192  Handle one line from a completed sync file.
193  **********************************************************************/
194
195 static void complete_one(struct sync_record *s,
196                          char *sname, uint32 stype, char *comment)
197 {
198         struct work_record *work;
199         struct server_record *servrec;
200
201         stype &= ~SV_TYPE_LOCAL_LIST_ONLY;
202
203         if (stype & SV_TYPE_DOMAIN_ENUM) {
204                 /* See if we can find the workgroup on this subnet. */
205                 if((work=find_workgroup_on_subnet(unicast_subnet, sname))) {
206                         /* We already know about this workgroup -
207                            update the ttl. */
208                         update_workgroup_ttl(work,lp_max_ttl());
209                 } else {
210                         /* Create the workgroup on the subnet. */
211                         work = create_workgroup_on_subnet(unicast_subnet, 
212                                                           sname, lp_max_ttl());
213                         if (work) {
214                                 /* remember who the master is */
215                                 unstrcpy(work->local_master_browser_name, comment);
216                         }
217                 }
218                 return;
219         } 
220
221         work = find_workgroup_on_subnet(unicast_subnet, s->workgroup);
222         if (!work) {
223                 DEBUG(3,("workgroup %s doesn't exist on unicast subnet?\n",
224                          s->workgroup));
225                 return;
226         }
227
228         if ((servrec = find_server_in_workgroup( work, sname))) {
229                 /* Check that this is not a locally known
230                    server - if so ignore the entry. */
231                 if(!(servrec->serv.type & SV_TYPE_LOCAL_LIST_ONLY)) {
232                         /* We already know about this server - update
233                            the ttl. */
234                         update_server_ttl(servrec, lp_max_ttl());
235                         /* Update the type. */
236                         servrec->serv.type = stype;
237                 }
238                 return;
239         } 
240
241         /* Create the server in the workgroup. */ 
242         create_server_on_workgroup(work, sname,stype, lp_max_ttl(), comment);
243 }
244
245 /**********************************************************************
246  Read the completed sync info.
247 **********************************************************************/
248
249 static void complete_sync(struct sync_record *s)
250 {
251         XFILE *f;
252         char *server;
253         char *type_str;
254         unsigned type;
255         char *comment;
256         char line[1024];
257         const char *ptr;
258         int count=0;
259
260         f = x_fopen(s->fname,O_RDONLY, 0);
261
262         if (!f)
263                 return;
264
265         while (!x_feof(f)) {
266                 TALLOC_CTX *frame = NULL;
267
268                 if (!fgets_slash(line,sizeof(line),f))
269                         continue;
270
271                 ptr = line;
272
273                 frame = talloc_stackframe();
274                 if (!next_token_talloc(frame,&ptr,&server,NULL) ||
275                     !next_token_talloc(frame,&ptr,&type_str,NULL) ||
276                     !next_token_talloc(frame,&ptr,&comment,NULL)) {
277                         TALLOC_FREE(frame);
278                         continue;
279                 }
280
281                 sscanf(type_str, "%X", &type);
282
283                 complete_one(s, server, type, comment);
284
285                 count++;
286                 TALLOC_FREE(frame);
287         }
288         x_fclose(f);
289
290         unlink(s->fname);
291
292         DEBUG(2,("sync with %s(%s) for workgroup %s completed (%d records)\n",
293                  s->server, inet_ntoa(s->ip), s->workgroup, count));
294 }
295
296 /**********************************************************************
297  Check for completion of any of the child processes.
298 **********************************************************************/
299
300 void sync_check_completion(void)
301 {
302         struct sync_record *s, *next;
303
304         for (s=syncs;s;s=next) {
305                 next = s->next;
306                 if (!process_exists_by_pid(s->pid)) {
307                         /* it has completed - grab the info */
308                         complete_sync(s);
309                         DLIST_REMOVE(syncs, s);
310                         SAFE_FREE(s->fname);
311                         SAFE_FREE(s);
312                 }
313         }
314 }