r14739: keep the last request time for the smbsrv_connection,
[ira/wip.git] / source4 / 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_task.h"
24 #include "smbd/service_stream.h"
25 #include "smbd/service.h"
26 #include "smb_server/smb_server.h"
27 #include "lib/messaging/irpc.h"
28 #include "lib/stream/packet.h"
29 #include "libcli/smb2/smb2.h"
30 #include "smb_server/smb2/smb2_server.h"
31 #include "system/network.h"
32 #include "netif/netif.h"
33
34 static NTSTATUS smbsrv_recv_generic_request(void *private, DATA_BLOB blob)
35 {
36         NTSTATUS status;
37         struct smbsrv_connection *smb_conn = talloc_get_type(private, struct smbsrv_connection);
38         uint32_t protocol_version;
39
40         /* see if its a special NBT packet */
41         if (CVAL(blob.data,0) != 0) {
42                 status = smbsrv_init_smb_connection(smb_conn);
43                 NT_STATUS_NOT_OK_RETURN(status);
44                 packet_set_callback(smb_conn->packet, smbsrv_recv_smb_request);
45                 return smbsrv_recv_smb_request(smb_conn, blob);
46         }
47
48         if (blob.length < (NBT_HDR_SIZE + MIN_SMB_SIZE)) {
49                 DEBUG(2,("Invalid SMB packet length count %ld\n", (long)blob.length));
50                 smbsrv_terminate_connection(smb_conn, "Invalid SMB packet");
51                 return NT_STATUS_OK;
52         }
53
54         protocol_version = IVAL(blob.data, NBT_HDR_SIZE);
55
56         switch (protocol_version) {
57         case SMB_MAGIC:
58                 status = smbsrv_init_smb_connection(smb_conn);
59                 NT_STATUS_NOT_OK_RETURN(status);
60                 packet_set_callback(smb_conn->packet, smbsrv_recv_smb_request);
61                 return smbsrv_recv_smb_request(smb_conn, blob);
62         case SMB2_MAGIC:
63                 if (lp_maxprotocol() < PROTOCOL_SMB2) break;
64                 status = smbsrv_init_smb2_connection(smb_conn);
65                 NT_STATUS_NOT_OK_RETURN(status);
66                 packet_set_callback(smb_conn->packet, smbsrv_recv_smb2_request);
67                 return smbsrv_recv_smb2_request(smb_conn, blob);
68         }
69
70         DEBUG(2,("Invalid SMB packet: protocol prefix: 0x%08X\n", protocol_version));
71         smbsrv_terminate_connection(smb_conn, "NON-SMB packet");
72         return NT_STATUS_OK;
73 }
74
75 /*
76   close the socket and shutdown a server_context
77 */
78 void smbsrv_terminate_connection(struct smbsrv_connection *smb_conn, const char *reason)
79 {
80         stream_terminate_connection(smb_conn->connection, reason);
81 }
82
83 /*
84   called when a SMB socket becomes readable
85 */
86 static void smbsrv_recv(struct stream_connection *conn, uint16_t flags)
87 {
88         struct smbsrv_connection *smb_conn = talloc_get_type(conn->private,
89                                                              struct smbsrv_connection);
90
91         DEBUG(10,("smbsrv_recv\n"));
92
93         packet_recv(smb_conn->packet);
94
95         /* free up temporary memory */
96         lp_talloc_free();
97 }
98
99 /*
100   called when a SMB socket becomes writable
101 */
102 static void smbsrv_send(struct stream_connection *conn, uint16_t flags)
103 {
104         struct smbsrv_connection *smb_conn = talloc_get_type(conn->private, 
105                                                              struct smbsrv_connection);
106         packet_queue_run(smb_conn->packet);
107 }
108
109 /*
110   handle socket recv errors
111 */
112 static void smbsrv_recv_error(void *private, NTSTATUS status)
113 {
114         struct smbsrv_connection *smb_conn = talloc_get_type(private, struct smbsrv_connection);
115         
116         smbsrv_terminate_connection(smb_conn, nt_errstr(status));
117 }
118
119 /*
120   initialise a server_context from a open socket and register a event handler
121   for reading from that socket
122 */
123 static void smbsrv_accept(struct stream_connection *conn)
124 {
125         struct smbsrv_connection *smb_conn;
126
127         DEBUG(5,("smbsrv_accept\n"));
128
129         smb_conn = talloc_zero(conn, struct smbsrv_connection);
130         if (!smb_conn) {
131                 stream_terminate_connection(conn, "out of memory");
132                 return;
133         }
134
135         smb_conn->packet = packet_init(smb_conn);
136         if (!smb_conn->packet) {
137                 smbsrv_terminate_connection(smb_conn, "out of memory");
138                 return;
139         }
140         packet_set_private(smb_conn->packet, smb_conn);
141         packet_set_socket(smb_conn->packet, conn->socket);
142         packet_set_callback(smb_conn->packet, smbsrv_recv_generic_request);
143         packet_set_full_request(smb_conn->packet, packet_full_request_nbt);
144         packet_set_error_handler(smb_conn->packet, smbsrv_recv_error);
145         packet_set_event_context(smb_conn->packet, conn->event.ctx);
146         packet_set_fde(smb_conn->packet, conn->event.fde);
147         packet_set_serialise(smb_conn->packet);
148
149         smb_conn->connection = conn;
150         conn->private = smb_conn;
151
152         irpc_add_name(conn->msg_ctx, "smb_server");
153
154         smb_conn->statistics.connect_time = timeval_current();
155
156         smbsrv_management_init(smb_conn);
157 }
158
159 static const struct stream_server_ops smb_stream_ops = {
160         .name                   = "smbsrv",
161         .accept_connection      = smbsrv_accept,
162         .recv_handler           = smbsrv_recv,
163         .send_handler           = smbsrv_send,
164 };
165
166 /*
167   setup a listening socket on all the SMB ports for a particular address
168 */
169 static NTSTATUS smb_add_socket(struct event_context *event_context,
170                                const struct model_ops *model_ops,
171                                const char *address)
172 {
173         const char **ports = lp_smb_ports();
174         int i;
175         NTSTATUS status;
176
177         for (i=0;ports[i];i++) {
178                 uint16_t port = atoi(ports[i]);
179                 if (port == 0) continue;
180                 status = stream_setup_socket(event_context, model_ops, &smb_stream_ops, 
181                                              "ipv4", address, &port, NULL);
182                 NT_STATUS_NOT_OK_RETURN(status);
183         }
184
185         return NT_STATUS_OK;
186 }
187
188 /*
189   open the smb server sockets
190 */
191 static void smbsrv_task_init(struct task_server *task)
192 {       
193         NTSTATUS status;
194
195         task_server_set_title(task, "task[smbsrv]");
196
197         if (lp_interfaces() && lp_bind_interfaces_only()) {
198                 int num_interfaces = iface_count();
199                 int i;
200
201                 /* We have been given an interfaces line, and been 
202                    told to only bind to those interfaces. Create a
203                    socket per interface and bind to only these.
204                 */
205                 for(i = 0; i < num_interfaces; i++) {
206                         const char *address = iface_n_ip(i);
207                         status = smb_add_socket(task->event_ctx, task->model_ops, address);
208                         if (!NT_STATUS_IS_OK(status)) goto failed;
209                 }
210         } else {
211                 /* Just bind to lp_socket_address() (usually 0.0.0.0) */
212                 status = smb_add_socket(task->event_ctx, task->model_ops, lp_socket_address());
213                 if (!NT_STATUS_IS_OK(status)) goto failed;
214         }
215
216         return;
217 failed:
218         task_server_terminate(task, "Failed to startup smb server task");       
219 }
220
221 /*
222   called on startup of the smb server service It's job is to start
223   listening on all configured sockets
224 */
225 static NTSTATUS smbsrv_init(struct event_context *event_context, 
226                             const struct model_ops *model_ops)
227 {       
228         return task_server_startup(event_context, model_ops, smbsrv_task_init);
229 }
230
231 /* called at smbd startup - register ourselves as a server service */
232 NTSTATUS server_service_smb_init(void)
233 {
234         return register_server_service("smb", smbsrv_init);
235 }