summaryrefslogtreecommitdiff
path: root/source3/utils/nmb-agent.c
blob: ad9c958350ec3ffb3b7cc5ce1c1e23bf3b9bc4db (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
/* 
   Unix SMB/Netbios implementation.
   Version 2
   SMB agent/socket plugin
   Copyright (C) Andrew Tridgell 1999
   
   This program is free software; you can redistribute it and/or modify
   it under the terms of the GNU General Public License as published by
   the Free Software Foundation; either version 2 of the License, or
   (at your option) any later version.
   
   This program is distributed in the hope that it will be useful,
   but WITHOUT ANY WARRANTY; without even the implied warranty of
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
   GNU General Public License for more details.
   
   You should have received a copy of the GNU General Public License
   along with this program; if not, write to the Free Software
   Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*/

#include "includes.h"
#include "smb.h"

#define SECURITY_MASK 0
#define SECURITY_SET  0

/* this forces non-unicode */
#define CAPABILITY_MASK CAP_UNICODE
#define CAPABILITY_SET  0

/* and non-unicode for the client too */
#define CLI_CAPABILITY_MASK CAP_UNICODE
#define CLI_CAPABILITY_SET  0

extern int DEBUGLEVEL;

static int ClientNMB = -1;

/****************************************************************************
terminate sockent connection
****************************************************************************/
static void free_sock(void *sock)
{
	if (sock != NULL)
	{
		free(sock);
	}
}

static void filter_reply(struct packet_struct *p, int tr_id)
{
	p->packet.nmb.header.name_trn_id = tr_id;
}

static BOOL process_cli_sock(struct sock_redir **socks,
				uint32 num_socks,
				struct sock_redir *sock)
{
	struct packet_struct *p;
	struct nmb_state *nmb;
	static uint16 trn_id = 0x0;

	p = receive_packet(sock->c, NMB_SOCK_PACKET, 0);
	if (p == NULL)
	{
		DEBUG(0,("client closed connection\n"));
		return False;
	}

	nmb = (struct nmb_state*)malloc(sizeof(struct nmb_state));
	if (nmb == NULL)
	{
		free_packet(p);
		return False;
	}

	sock->s = ClientNMB;
	sock->n = nmb;
	sock->c_id = p->packet.nmb.header.name_trn_id;
	sock->s_id = trn_id;

	trn_id++;
	if (trn_id > 0xffff)
	{
		trn_id = 0x0;
	}

	DEBUG(10,("new trn_id: %d\n", trn_id));

	filter_reply(p, sock->s_id);

	nmb->ip = p->ip;
	nmb->port = p->port;

	p->fd = ClientNMB;
	p->packet_type = NMB_PACKET;

	if (!send_packet(p))
	{
		DEBUG(0,("server is dead\n"));
		free_packet(p);
		return False;
	}			
	free_packet(p);
	return True;
}

static BOOL process_srv_sock(struct sock_redir **socks,
				uint32 num_socks,
				int fd)
{
	int nmb_id;
	int tr_id;
	int i;

	struct packet_struct *p;

	p = receive_packet(fd, NMB_PACKET, 0);
	if (p == NULL)
	{
		return True;
	}

#if 0
	if (!p->packet.nmb.header.response)
	{
		DEBUG(10,("skipping response packet\n"));
		free_packet(p);
		return True;
	}
#endif

	nmb_id = p->packet.nmb.header.name_trn_id;
	DEBUG(10,("process_srv_sock:\tnmb_id:\t%d\n", nmb_id));

	for (i = 0; i < num_socks; i++)
	{
		if (socks[i] == NULL)
		{
			continue;
		}

		tr_id = socks[i]->s_id;

		DEBUG(10,("list:\tfd:\t%d\tc_id:\t%d\ttr_id:\t%d\n",
			   socks[i]->c,
			   socks[i]->c_id,
			   tr_id));

		if (nmb_id != tr_id)
		{
			continue;
		}

		filter_reply(p, socks[i]->c_id);
		p->fd = socks[i]->c;
		p->packet_type = NMB_SOCK_PACKET;

		if (!send_packet(p))
		{
			DEBUG(0,("client is dead\n"));
			return False;
		}			
		return True;
	}
	return True;
}

static int get_agent_sock(void*id)
{
	int s;
	struct sockaddr_un sa;
	fstring path;
	fstring dir;

	CatchChild();

	slprintf(dir, sizeof(dir)-1, "/tmp/.nmb");
	mkdir(dir, 0777);

	slprintf(path, sizeof(path)-1, "%s/agent", dir);
	if (chmod(dir, 0777) < 0)
	{
		fprintf(stderr, "chmod on %s failed\n", sa.sun_path);
		return -1;
	}


	/* start listening on unix socket */
	s = socket(AF_UNIX, SOCK_STREAM, 0);

	if (s < 0)
	{
		fprintf(stderr, "socket open failed\n");
		return -1;
	}

	ZERO_STRUCT(sa);
	sa.sun_family = AF_UNIX;
	safe_strcpy(sa.sun_path, path, sizeof(sa.sun_path)-1);

	if (bind(s, (struct sockaddr*) &sa, sizeof(sa)) < 0)
	{
		fprintf(stderr, "socket bind to %s failed\n", sa.sun_path);
		close(s);
		remove(path);
		return -1;
	}

	if (s == -1)
	{
		DEBUG(0,("bind failed\n"));
		remove(path);
		return -1;
	}

	chmod(path, 0777);

	if (listen(s, 5) == -1)
	{
		DEBUG(0,("listen failed\n"));
		return -1;
	}

	return s;
}

static void start_nmb_agent(void)
{
	struct vagent_ops va =
	{
		free_sock,
		get_agent_sock,
		process_cli_sock,
		process_srv_sock,
		NULL,
		NULL,
		0
	};
	
	CatchChild();

	start_agent(&va);
}

/******************************************************************************
 open the socket communication
 *****************************************************************************/
static BOOL open_sockets(BOOL isdaemon, int port)
{
  /* The sockets opened here will be used to receive broadcast
     packets *only*. Interface specific sockets are opened in
     make_subnet() in namedbsubnet.c. Thus we bind to the
     address "0.0.0.0". The parameter 'socket address' is
     now deprecated.
   */

  if ( isdaemon )
    ClientNMB = open_socket_in(SOCK_DGRAM, port,0,0);
  else
    ClientNMB = 0;
  
  if ( ClientNMB == -1 )
    return( False );

  /* we are never interested in SIGPIPE */
  BlockSignals(True,SIGPIPE);

  set_socket_options( ClientNMB,   "SO_BROADCAST" );

  DEBUG( 3, ( "open_sockets: Broadcast sockets opened.\n" ) );
  return( True );
} /* open_sockets */

/****************************************************************************
usage on the program
****************************************************************************/
static void usage(char *pname)
{
  printf("Usage: %s [-D]", pname);

  printf("\nVersion %s\n",VERSION);
  printf("\t-D 		run as a daemon\n");
  printf("\t-h 		usage\n");
  printf("\n");
}

int main(int argc, char *argv[])
{
	pstring configfile;
	BOOL is_daemon = False;
	int opt;
	extern pstring debugf;
	int global_nmb_port = NMB_PORT;

	TimeInit();

	pstrcpy(configfile,CONFIGFILE);
 
	while ((opt = getopt(argc, argv, "Dh")) != EOF)
	{
		switch (opt)
		{
			case 'D':
			{
				is_daemon = True;
				break;
			}
			case 'h':
			default:
			{
				usage(argv[0]);
				break;
			}
		}
	}

	slprintf(debugf, sizeof(debugf)-1, "log.%s", argv[0]);
	setup_logging(argv[0], !is_daemon);
  
	charset_initialise();

	if (!lp_load(configfile,True,False,False))
	{
		DEBUG(0,("Unable to load config file\n"));
	}

	if (is_daemon)
	{
		DEBUG(0,("%s: becoming daemon\n", argv[0]));
		become_daemon();
	}

	if (!open_sockets(True, global_nmb_port))
	{
		return 1;
	}

	start_nmb_agent();

	return 0;
}