r7294: implemented the irpc messaging system. This is the core of the
[sfrench/samba-autobuild/.git] / source4 / smbd / service_stream.c
1 /* 
2    Unix SMB/CIFS implementation.
3
4    helper functions for stream based servers
5
6    Copyright (C) Andrew Tridgell 2003-2005
7    Copyright (C) Stefan (metze) Metzmacher      2004
8    
9    This program is free software; you can redistribute it and/or modify
10    it under the terms of the GNU General Public License as published by
11    the Free Software Foundation; either version 2 of the License, or
12    (at your option) any later version.
13    
14    This program is distributed in the hope that it will be useful,
15    but WITHOUT ANY WARRANTY; without even the implied warranty of
16    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17    GNU General Public License for more details.
18    
19    You should have received a copy of the GNU General Public License
20    along with this program; if not, write to the Free Software
21    Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
22 */
23
24 #include "includes.h"
25 #include "process_model.h"
26 #include "lib/events/events.h"
27 #include "lib/socket/socket.h"
28 #include "smbd/service_stream.h"
29 #include "lib/messaging/irpc.h"
30
31 /* the range of ports to try for dcerpc over tcp endpoints */
32 #define SERVER_TCP_LOW_PORT  1024
33 #define SERVER_TCP_HIGH_PORT 1300
34
35 /* size of listen() backlog in smbd */
36 #define SERVER_LISTEN_BACKLOG 10
37
38
39 /*
40   private structure for a single listening stream socket
41 */
42 struct stream_socket {
43         const struct stream_server_ops *ops;
44         struct event_context *event_ctx;
45         const struct model_ops *model_ops;
46         struct socket_context *sock;
47         void *private;
48 };
49
50
51 /*
52   close the socket and shutdown a stream_connection
53 */
54 void stream_terminate_connection(struct stream_connection *srv_conn, const char *reason)
55 {
56         struct event_context *event_ctx = srv_conn->event.ctx;
57         const struct model_ops *model_ops = srv_conn->model_ops;
58         talloc_free(srv_conn);
59         model_ops->terminate(event_ctx, reason);
60 }
61
62 /*
63   the select loop has indicated that a stream is ready for IO
64 */
65 static void stream_io_handler(struct event_context *ev, struct fd_event *fde, 
66                               uint16_t flags, void *private)
67 {
68         struct stream_connection *conn = talloc_get_type(private, 
69                                                          struct stream_connection);
70         if (flags & EVENT_FD_WRITE) {
71                 conn->ops->send_handler(conn, flags);
72                 return;
73         }
74
75         if (flags & EVENT_FD_READ) {
76                 conn->ops->recv_handler(conn, flags);
77         }
78 }
79
80
81 /*
82   called when a new socket connection has been established. This is called in the process
83   context of the new process (if appropriate)
84 */
85 static void stream_new_connection(struct event_context *ev,
86                                   struct socket_context *sock, 
87                                   uint32_t server_id, void *private)
88 {
89         struct stream_socket *stream_socket = talloc_get_type(private, struct stream_socket);
90         struct stream_connection *srv_conn;
91
92         srv_conn = talloc_zero(ev, struct stream_connection);
93         if (!srv_conn) {
94                 DEBUG(0,("talloc(mem_ctx, struct stream_connection) failed\n"));
95                 return;
96         }
97
98         talloc_steal(srv_conn, sock);
99
100         srv_conn->private       = stream_socket->private;
101         srv_conn->model_ops     = stream_socket->model_ops;
102         srv_conn->socket        = sock;
103         srv_conn->server_id     = server_id;
104         srv_conn->ops           = stream_socket->ops;
105         srv_conn->event.ctx     = ev;
106         srv_conn->event.fde     = event_add_fd(ev, srv_conn, socket_get_fd(sock),
107                                                EVENT_FD_READ, 
108                                                stream_io_handler, srv_conn);
109
110         if (!socket_check_access(sock, "smbd", lp_hostsallow(-1), lp_hostsdeny(-1))) {
111                 stream_terminate_connection(srv_conn, "denied by access rules");
112                 return;
113         }
114
115         /* setup to receive internal messages on this connection */
116         srv_conn->msg_ctx = messaging_init(srv_conn, srv_conn->server_id, ev);
117         if (!srv_conn->msg_ctx) {
118                 stream_terminate_connection(srv_conn, "messaging_init() failed");
119                 return;
120         }
121
122         /* call the server specific accept code */
123         stream_socket->ops->accept_connection(srv_conn);
124 }
125
126
127 /*
128   called when someone opens a connection to one of our listening ports
129 */
130 static void stream_accept_handler(struct event_context *ev, struct fd_event *fde, 
131                                   uint16_t flags, void *private)
132 {
133         struct stream_socket *stream_socket = talloc_get_type(private, struct stream_socket);
134
135         /* ask the process model to create us a process for this new
136            connection.  When done, it calls stream_new_connection()
137            with the newly created socket */
138         stream_socket->model_ops->accept_connection(ev, stream_socket->sock, 
139                                                     stream_new_connection, stream_socket);
140 }
141
142
143
144 /*
145   setup a listen stream socket
146   if you pass *port == 0, then a port > 1024 is used
147  */
148 NTSTATUS stream_setup_socket(struct event_context *event_context,
149                              const struct model_ops *model_ops,
150                              const struct stream_server_ops *stream_ops,
151                              const char *family,
152                              const char *sock_addr,
153                              uint16_t *port,
154                              void *private)
155 {
156         NTSTATUS status;
157         struct stream_socket *stream_socket;
158         int i;
159
160         stream_socket = talloc_zero(event_context, struct stream_socket);
161         NT_STATUS_HAVE_NO_MEMORY(stream_socket);
162
163         status = socket_create(family, SOCKET_TYPE_STREAM, &stream_socket->sock, 0);
164         NT_STATUS_NOT_OK_RETURN(status);
165
166         talloc_steal(stream_socket, stream_socket->sock);
167
168         /* ready to listen */
169         status = socket_set_option(stream_socket->sock, "SO_KEEPALIVE", NULL);
170         NT_STATUS_NOT_OK_RETURN(status);
171
172         status = socket_set_option(stream_socket->sock, lp_socket_options(), NULL);
173         NT_STATUS_NOT_OK_RETURN(status);
174
175         /* TODO: set socket ACL's here when they're implemented */
176
177         if (*port == 0) {
178                 for (i=SERVER_TCP_LOW_PORT;i<= SERVER_TCP_HIGH_PORT;i++) {
179                         status = socket_listen(stream_socket->sock, sock_addr, i, 
180                                                SERVER_LISTEN_BACKLOG, 0);
181                         if (NT_STATUS_IS_OK(status)) {
182                                 *port = i;
183                                 break;
184                         }
185                 }
186         } else {
187                 status = socket_listen(stream_socket->sock, sock_addr, *port, SERVER_LISTEN_BACKLOG, 0);
188         }
189
190         if (!NT_STATUS_IS_OK(status)) {
191                 DEBUG(0,("Failed to listen on %s:%u - %s\n",
192                         sock_addr, *port, nt_errstr(status)));
193                 talloc_free(stream_socket);
194                 return status;
195         }
196
197         event_add_fd(event_context, stream_socket->sock, 
198                      socket_get_fd(stream_socket->sock), 
199                      EVENT_FD_READ, stream_accept_handler, stream_socket);
200
201         stream_socket->private          = talloc_reference(stream_socket, private);
202         stream_socket->ops              = stream_ops;
203         stream_socket->event_ctx        = event_context;
204         stream_socket->model_ops        = model_ops;
205
206         return NT_STATUS_OK;
207 }