r13924: Split more prototypes out of include/proto.h + initial work on header
[jelmer/samba4-debian.git] / source / smb_server / smb_server.c
1 /* 
2    Unix SMB/CIFS implementation.
3    process incoming packets - main loop
4    Copyright (C) Andrew Tridgell        2004-2005
5    Copyright (C) Stefan Metzmacher      2004-2005
6    
7    This program is free software; you can redistribute it and/or modify
8    it under the terms of the GNU General Public License as published by
9    the Free Software Foundation; either version 2 of the License, or
10    (at your option) any later version.
11    
12    This program is distributed in the hope that it will be useful,
13    but WITHOUT ANY WARRANTY; without even the implied warranty of
14    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15    GNU General Public License for more details.
16    
17    You should have received a copy of the GNU General Public License
18    along with this program; if not, write to the Free Software
19    Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
20 */
21
22 #include "includes.h"
23 #include "smbd/service_stream.h"
24 #include "smb_server/smb_server.h"
25 #include "lib/messaging/irpc.h"
26 #include "lib/stream/packet.h"
27 #include "libcli/smb2/smb2.h"
28 #include "smb_server/smb2/smb2_server.h"
29 #include "system/network.h"
30 #include "netif/netif.h"
31
32 static NTSTATUS smbsrv_recv_generic_request(void *private, DATA_BLOB blob)
33 {
34         NTSTATUS status;
35         struct smbsrv_connection *smb_conn = talloc_get_type(private, struct smbsrv_connection);
36         uint32_t protocol_version;
37
38         /* see if its a special NBT packet */
39         if (CVAL(blob.data,0) != 0) {
40                 status = smbsrv_init_smb_connection(smb_conn);
41                 NT_STATUS_NOT_OK_RETURN(status);
42                 packet_set_callback(smb_conn->packet, smbsrv_recv_smb_request);
43                 return smbsrv_recv_smb_request(smb_conn, blob);
44         }
45
46         if (blob.length < (NBT_HDR_SIZE + MIN_SMB_SIZE)) {
47                 DEBUG(2,("Invalid SMB packet length count %ld\n", (long)blob.length));
48                 smbsrv_terminate_connection(smb_conn, "Invalid SMB packet");
49                 return NT_STATUS_OK;
50         }
51
52         protocol_version = IVAL(blob.data, NBT_HDR_SIZE);
53
54         switch (protocol_version) {
55         case SMB_MAGIC:
56                 status = smbsrv_init_smb_connection(smb_conn);
57                 NT_STATUS_NOT_OK_RETURN(status);
58                 packet_set_callback(smb_conn->packet, smbsrv_recv_smb_request);
59                 return smbsrv_recv_smb_request(smb_conn, blob);
60         case SMB2_MAGIC:
61                 if (lp_maxprotocol() < PROTOCOL_SMB2) break;
62                 status = smbsrv_init_smb2_connection(smb_conn);
63                 NT_STATUS_NOT_OK_RETURN(status);
64                 packet_set_callback(smb_conn->packet, smbsrv_recv_smb2_request);
65                 return smbsrv_recv_smb2_request(smb_conn, blob);
66         }
67
68         DEBUG(2,("Invalid SMB packet: protocol prefix: 0x%08X\n", protocol_version));
69         smbsrv_terminate_connection(smb_conn, "NON-SMB packet");
70         return NT_STATUS_OK;
71 }
72
73 /*
74   close the socket and shutdown a server_context
75 */
76 void smbsrv_terminate_connection(struct smbsrv_connection *smb_conn, const char *reason)
77 {
78         stream_terminate_connection(smb_conn->connection, reason);
79 }
80
81 /*
82   called when a SMB socket becomes readable
83 */
84 static void smbsrv_recv(struct stream_connection *conn, uint16_t flags)
85 {
86         struct smbsrv_connection *smb_conn = talloc_get_type(conn->private,
87                                                              struct smbsrv_connection);
88
89         DEBUG(10,("smbsrv_recv\n"));
90
91         packet_recv(smb_conn->packet);
92
93         /* free up temporary memory */
94         lp_talloc_free();
95 }
96
97 /*
98   called when a SMB socket becomes writable
99 */
100 static void smbsrv_send(struct stream_connection *conn, uint16_t flags)
101 {
102         struct smbsrv_connection *smb_conn = talloc_get_type(conn->private, 
103                                                              struct smbsrv_connection);
104         packet_queue_run(smb_conn->packet);
105 }
106
107 /*
108   handle socket recv errors
109 */
110 static void smbsrv_recv_error(void *private, NTSTATUS status)
111 {
112         struct smbsrv_connection *smb_conn = talloc_get_type(private, struct smbsrv_connection);
113         
114         smbsrv_terminate_connection(smb_conn, nt_errstr(status));
115 }
116
117 /*
118   initialise a server_context from a open socket and register a event handler
119   for reading from that socket
120 */
121 static void smbsrv_accept(struct stream_connection *conn)
122 {
123         struct smbsrv_connection *smb_conn;
124
125         DEBUG(5,("smbsrv_accept\n"));
126
127         smb_conn = talloc_zero(conn, struct smbsrv_connection);
128         if (!smb_conn) {
129                 stream_terminate_connection(conn, "out of memory");
130                 return;
131         }
132
133         smb_conn->packet = packet_init(smb_conn);
134         if (!smb_conn->packet) {
135                 smbsrv_terminate_connection(smb_conn, "out of memory");
136                 return;
137         }
138         packet_set_private(smb_conn->packet, smb_conn);
139         packet_set_socket(smb_conn->packet, conn->socket);
140         packet_set_callback(smb_conn->packet, smbsrv_recv_generic_request);
141         packet_set_full_request(smb_conn->packet, packet_full_request_nbt);
142         packet_set_error_handler(smb_conn->packet, smbsrv_recv_error);
143         packet_set_event_context(smb_conn->packet, conn->event.ctx);
144         packet_set_fde(smb_conn->packet, conn->event.fde);
145         packet_set_serialise(smb_conn->packet);
146
147         smb_conn->connection = conn;
148         conn->private = smb_conn;
149
150         irpc_add_name(conn->msg_ctx, "smb_server");
151
152         smbsrv_management_init(smb_conn);
153 }
154
155 static const struct stream_server_ops smb_stream_ops = {
156         .name                   = "smb",
157         .accept_connection      = smbsrv_accept,
158         .recv_handler           = smbsrv_recv,
159         .send_handler           = smbsrv_send,
160 };
161
162 /*
163   setup a listening socket on all the SMB ports for a particular address
164 */
165 static NTSTATUS smb_add_socket(struct event_context *event_context,
166                                const struct model_ops *model_ops,
167                                const char *address)
168 {
169         const char **ports = lp_smb_ports();
170         int i;
171         NTSTATUS status;
172
173         for (i=0;ports[i];i++) {
174                 uint16_t port = atoi(ports[i]);
175                 if (port == 0) continue;
176                 status = stream_setup_socket(event_context, model_ops, &smb_stream_ops, 
177                                              "ipv4", address, &port, NULL);
178                 NT_STATUS_NOT_OK_RETURN(status);
179         }
180
181         return NT_STATUS_OK;
182 }
183
184 /*
185   called on startup of the smb server service It's job is to start
186   listening on all configured SMB server sockets
187 */
188 static NTSTATUS smbsrv_init(struct event_context *event_context, const struct model_ops *model_ops)
189 {       
190         NTSTATUS status;
191
192         if (lp_interfaces() && lp_bind_interfaces_only()) {
193                 int num_interfaces = iface_count();
194                 int i;
195
196                 /* We have been given an interfaces line, and been 
197                    told to only bind to those interfaces. Create a
198                    socket per interface and bind to only these.
199                 */
200                 for(i = 0; i < num_interfaces; i++) {
201                         const char *address = iface_n_ip(i);
202                         status = smb_add_socket(event_context, model_ops, address);
203                         NT_STATUS_NOT_OK_RETURN(status);
204                 }
205         } else {
206                 /* Just bind to lp_socket_address() (usually 0.0.0.0) */
207                 status = smb_add_socket(event_context, model_ops, lp_socket_address());
208                 NT_STATUS_NOT_OK_RETURN(status);
209         }
210
211         return NT_STATUS_OK;
212 }
213
214 /* called at smbd startup - register ourselves as a server service */
215 NTSTATUS server_service_smb_init(void)
216 {
217         return register_server_service("smb", smbsrv_init);
218 }