winbind: Keep "force_reauth" in invalidate_cm_connection
[Samba.git] / source3 / nmbd / nmbd_synclists.c
blob53b4f12903819e9109a9f94fe1851a51805e9eda
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
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.
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, see <http://www.gnu.org/licenses/>.
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) */
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 "../libcli/smb/smbXcli_base.h"
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;
45 /* a linked list of current sync connections */
46 static struct sync_record *syncs;
48 static FILE *fp;
50 /*******************************************************************
51 This is the NetServerEnum callback.
52 Note sname and comment are in UNIX codepage format.
53 ******************************************************************/
55 static void callback(const char *sname, uint32_t stype,
56 const char *comment, void *state)
58 fprintf(fp,"\"%s\" %08X \"%s\"\n", sname, stype, comment);
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 ******************************************************************/
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)
72 fstring unix_workgroup;
73 struct cli_state *cli;
74 uint32_t local_type = local ? SV_TYPE_LOCAL_LIST_ONLY : 0;
75 struct sockaddr_storage ss;
76 NTSTATUS status;
78 /* W2K DMB's return empty browse lists on port 445. Use 139.
79 * Patch from Andy Levine andyl@epicrealm.com.
82 in_addr_to_sockaddr_storage(&ss, ip);
84 status = cli_connect_nb(name, &ss, NBT_SMB_PORT, nm_type,
85 get_local_machine_name(), SMB_SIGNING_DEFAULT,
86 0, &cli);
87 if (!NT_STATUS_IS_OK(status)) {
88 return;
91 status = smbXcli_negprot(cli->conn, cli->timeout, PROTOCOL_CORE,
92 PROTOCOL_NT1);
93 if (!NT_STATUS_IS_OK(status)) {
94 cli_shutdown(cli);
95 return;
98 status = cli_session_setup_anon(cli);
99 if (!NT_STATUS_IS_OK(status)) {
100 cli_shutdown(cli);
101 return;
104 if (!NT_STATUS_IS_OK(cli_tree_connect(cli, "IPC$", "IPC", NULL))) {
105 cli_shutdown(cli);
106 return;
109 /* All the cli_XX functions take UNIX character set. */
110 fstrcpy(unix_workgroup, cli->server_domain ? cli->server_domain : workgroup);
112 /* Fetch a workgroup list. */
113 cli_NetServerEnum(cli, unix_workgroup,
114 local_type|SV_TYPE_DOMAIN_ENUM,
115 callback, NULL);
117 /* Now fetch a server list. */
118 if (servers) {
119 fstrcpy(unix_workgroup, workgroup);
120 cli_NetServerEnum(cli, unix_workgroup,
121 local?SV_TYPE_LOCAL_LIST_ONLY:SV_TYPE_ALL,
122 callback, NULL);
125 cli_shutdown(cli);
128 /*******************************************************************
129 initialise a browse sync with another browse server. Log in on the
130 remote server's SMB port to their IPC$ service, do a NetServerEnum
131 and record the results
132 ******************************************************************/
134 void sync_browse_lists(struct work_record *work,
135 char *name, int nm_type,
136 struct in_addr ip, bool local, bool servers)
138 struct sync_record *s;
139 static int counter;
140 int fd;
142 /* Check we're not trying to sync with ourselves. This can
143 happen if we are a domain *and* a local master browser. */
144 if (ismyip_v4(ip)) {
145 done:
146 return;
149 s = SMB_MALLOC_P(struct sync_record);
150 if (!s) goto done;
152 ZERO_STRUCTP(s);
154 unstrcpy(s->workgroup, work->work_group);
155 unstrcpy(s->server, name);
156 s->ip = ip;
158 if (asprintf(&s->fname, "%s/sync.%d", lp_lock_directory(), counter++) < 0) {
159 SAFE_FREE(s);
160 goto done;
162 /* Safe to use as 0 means no size change. */
163 all_string_sub(s->fname,"//", "/", 0);
165 DLIST_ADD(syncs, s);
167 /* the parent forks and returns, leaving the child to do the
168 actual sync */
169 CatchChild();
170 if ((s->pid = fork())) return;
172 BlockSignals( False, SIGTERM );
174 DEBUG(2,("Initiating browse sync for %s to %s(%s)\n",
175 work->work_group, name, inet_ntoa(ip)));
177 fd = open(s->fname, O_WRONLY|O_CREAT|O_TRUNC, 0644);
178 if (fd == -1) {
179 _exit(1);
182 fp = fdopen(fd, "w");
183 if (!fp) {
184 _exit(1);
186 fd = -1;
188 sync_child(name, nm_type, work->work_group, ip, local, servers,
189 s->fname);
191 fclose(fp);
192 _exit(0);
195 /**********************************************************************
196 Handle one line from a completed sync file.
197 **********************************************************************/
199 static void complete_one(struct sync_record *s,
200 char *sname, uint32_t stype, char *comment)
202 struct work_record *work;
203 struct server_record *servrec;
205 stype &= ~SV_TYPE_LOCAL_LIST_ONLY;
207 if (stype & SV_TYPE_DOMAIN_ENUM) {
208 /* See if we can find the workgroup on this subnet. */
209 if((work=find_workgroup_on_subnet(unicast_subnet, sname))) {
210 /* We already know about this workgroup -
211 update the ttl. */
212 update_workgroup_ttl(work,lp_max_ttl());
213 } else {
214 /* Create the workgroup on the subnet. */
215 work = create_workgroup_on_subnet(unicast_subnet,
216 sname, lp_max_ttl());
217 if (work) {
218 /* remember who the master is */
219 unstrcpy(work->local_master_browser_name, comment);
222 return;
225 work = find_workgroup_on_subnet(unicast_subnet, s->workgroup);
226 if (!work) {
227 DEBUG(3,("workgroup %s doesn't exist on unicast subnet?\n",
228 s->workgroup));
229 return;
232 if ((servrec = find_server_in_workgroup( work, sname))) {
233 /* Check that this is not a locally known
234 server - if so ignore the entry. */
235 if(!(servrec->serv.type & SV_TYPE_LOCAL_LIST_ONLY)) {
236 /* We already know about this server - update
237 the ttl. */
238 update_server_ttl(servrec, lp_max_ttl());
239 /* Update the type. */
240 servrec->serv.type = stype;
242 return;
245 /* Create the server in the workgroup. */
246 create_server_on_workgroup(work, sname,stype, lp_max_ttl(), comment);
249 /**********************************************************************
250 Read the completed sync info.
251 **********************************************************************/
253 static void complete_sync(struct sync_record *s)
255 FILE *f;
256 char *server;
257 char *type_str;
258 unsigned type;
259 char *comment;
260 char line[1024];
261 const char *ptr;
262 int count=0;
264 f = fopen(s->fname, "r");
266 if (!f)
267 return;
269 while (!feof(f)) {
270 TALLOC_CTX *frame = NULL;
272 if (!fgets_slash(NULL, line, sizeof(line), f))
273 continue;
275 ptr = line;
277 frame = talloc_stackframe();
278 if (!next_token_talloc(frame,&ptr,&server,NULL) ||
279 !next_token_talloc(frame,&ptr,&type_str,NULL) ||
280 !next_token_talloc(frame,&ptr,&comment,NULL)) {
281 TALLOC_FREE(frame);
282 continue;
285 sscanf(type_str, "%X", &type);
287 complete_one(s, server, type, comment);
289 count++;
290 TALLOC_FREE(frame);
292 fclose(f);
294 unlink(s->fname);
296 DEBUG(2,("sync with %s(%s) for workgroup %s completed (%d records)\n",
297 s->server, inet_ntoa(s->ip), s->workgroup, count));
300 /**********************************************************************
301 Check for completion of any of the child processes.
302 **********************************************************************/
304 void sync_check_completion(void)
306 struct sync_record *s, *next;
308 for (s=syncs;s;s=next) {
309 next = s->next;
310 if (!process_exists_by_pid(s->pid)) {
311 /* it has completed - grab the info */
312 complete_sync(s);
313 DLIST_REMOVE(syncs, s);
314 SAFE_FREE(s->fname);
315 SAFE_FREE(s);