f439bce06143be95a306d7fa42a0c01a7e93a874
[bbaumbach/samba-autobuild/.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 "lib/events/events.h"
24 #include "system/time.h"
25 #include "dlinklist.h"
26 #include "smbd/service_stream.h"
27 #include "smb_server/smb_server.h"
28 #include "lib/messaging/irpc.h"
29 #include "lib/stream/packet.h"
30 #include "libcli/smb2/smb2.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 %d\n", 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_parm_bool(-1, "smbsrv", "enable smb2", False)) 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: protocl 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         smb_conn->terminate = 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, struct smbsrv_connection);
87
88         DEBUG(10,("smbsrv_recv\n"));
89
90         packet_recv(smb_conn->packet);
91         if (smb_conn->terminate) {
92                 talloc_free(conn->event.fde);
93                 conn->event.fde = NULL;
94                 stream_terminate_connection(smb_conn->connection, smb_conn->terminate);
95                 return;
96         }
97
98         /* free up temporary memory */
99         lp_talloc_free();
100 }
101
102 /*
103   called when a SMB socket becomes writable
104 */
105 static void smbsrv_send(struct stream_connection *conn, uint16_t flags)
106 {
107         struct smbsrv_connection *smb_conn = talloc_get_type(conn->private, 
108                                                              struct smbsrv_connection);
109         packet_queue_run(smb_conn->packet);
110 }
111
112
113 /*
114   handle socket recv errors
115 */
116 static void smbsrv_recv_error(void *private, NTSTATUS status)
117 {
118         struct smbsrv_connection *smb_conn = talloc_get_type(private, struct smbsrv_connection);
119         
120         smbsrv_terminate_connection(smb_conn, nt_errstr(status));
121 }
122
123 /*
124   initialise a server_context from a open socket and register a event handler
125   for reading from that socket
126 */
127 static void smbsrv_accept(struct stream_connection *conn)
128 {
129         struct smbsrv_connection *smb_conn;
130
131         DEBUG(5,("smbsrv_accept\n"));
132
133         smb_conn = talloc_zero(conn, struct smbsrv_connection);
134         if (!smb_conn) return;
135
136         smb_conn->packet = packet_init(smb_conn);
137         if (smb_conn->packet == NULL) {
138                 stream_terminate_connection(conn, "out of memory");
139                 return;
140         }
141         packet_set_private(smb_conn->packet, smb_conn);
142         packet_set_socket(smb_conn->packet, conn->socket);
143         packet_set_callback(smb_conn->packet, smbsrv_recv_generic_request);
144         packet_set_full_request(smb_conn->packet, packet_full_request_nbt);
145         packet_set_error_handler(smb_conn->packet, smbsrv_recv_error);
146         packet_set_event_context(smb_conn->packet, conn->event.ctx);
147         packet_set_fde(smb_conn->packet, conn->event.fde);
148         packet_set_serialise(smb_conn->packet);
149
150         smb_conn->connection = conn;
151         conn->private = smb_conn;
152
153         irpc_add_name(conn->msg_ctx, "smb_server");
154
155         smbsrv_management_init(smb_conn);
156 }
157
158 static const struct stream_server_ops smb_stream_ops = {
159         .name                   = "smb",
160         .accept_connection      = smbsrv_accept,
161         .recv_handler           = smbsrv_recv,
162         .send_handler           = smbsrv_send,
163 };
164
165 /*
166   setup a listening socket on all the SMB ports for a particular address
167 */
168 static NTSTATUS smb_add_socket(struct event_context *event_context,
169                                const struct model_ops *model_ops,
170                                const char *address)
171 {
172         const char **ports = lp_smb_ports();
173         int i;
174         NTSTATUS status;
175
176         for (i=0;ports[i];i++) {
177                 uint16_t port = atoi(ports[i]);
178                 if (port == 0) continue;
179                 status = stream_setup_socket(event_context, model_ops, &smb_stream_ops, 
180                                              "ipv4", address, &port, NULL);
181                 NT_STATUS_NOT_OK_RETURN(status);
182         }
183
184         return NT_STATUS_OK;
185 }
186
187 /*
188   called on startup of the smb server service It's job is to start
189   listening on all configured SMB server sockets
190 */
191 static NTSTATUS smbsrv_init(struct event_context *event_context, const struct model_ops *model_ops)
192 {       
193         NTSTATUS status;
194
195         if (lp_interfaces() && lp_bind_interfaces_only()) {
196                 int num_interfaces = iface_count();
197                 int i;
198
199                 /* We have been given an interfaces line, and been 
200                    told to only bind to those interfaces. Create a
201                    socket per interface and bind to only these.
202                 */
203                 for(i = 0; i < num_interfaces; i++) {
204                         const char *address = iface_n_ip(i);
205                         status = smb_add_socket(event_context, model_ops, address);
206                         NT_STATUS_NOT_OK_RETURN(status);
207                 }
208         } else {
209                 /* Just bind to lp_socket_address() (usually 0.0.0.0) */
210                 status = smb_add_socket(event_context, model_ops, lp_socket_address());
211                 NT_STATUS_NOT_OK_RETURN(status);
212         }
213
214         return NT_STATUS_OK;
215 }
216
217 /* called at smbd startup - register ourselves as a server service */
218 NTSTATUS server_service_smb_init(void)
219 {
220         return register_server_service("smb", smbsrv_init);
221 }