r3314: added a option "socket:testnonblock" to the generic socket code. If
[bbaumbach/samba-autobuild/.git] / source4 / smbd / process_single.c
1 /* 
2    Unix SMB/CIFS implementation.
3    process model: process (1 process handles all client connections)
4    Copyright (C) Andrew Tridgell 2003
5    Copyright (C) James J Myers 2003 <myersjj@samba.org>
6    Copyright (C) Stefan (metze) Metzmacher 2004
7    
8    This program is free software; you can redistribute it and/or modify
9    it under the terms of the GNU General Public License as published by
10    the Free Software Foundation; either version 2 of the License, or
11    (at your option) any later version.
12    
13    This program is distributed in the hope that it will be useful,
14    but WITHOUT ANY WARRANTY; without even the implied warranty of
15    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16    GNU General Public License for more details.
17    
18    You should have received a copy of the GNU General Public License
19    along with this program; if not, write to the Free Software
20    Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
21 */
22
23 #include "includes.h"
24
25
26 /*
27   called when the process model is selected
28 */
29 static void single_start_server(void)
30 {
31         smbd_process_init();
32 }
33
34 /*
35   called when a listening socket becomes readable
36 */
37 static void single_accept_connection(struct event_context *ev, struct fd_event *srv_fde, time_t t, uint16_t flags)
38 {
39         NTSTATUS status;
40         struct socket_context *sock;
41         struct server_socket *server_socket = srv_fde->private;
42         struct server_connection *conn;
43
44         /* accept an incoming connection. */
45         status = socket_accept(server_socket->socket, &sock);
46         if (!NT_STATUS_IS_OK(status)) {
47                 DEBUG(0,("accept_connection_single: accept: %s\n",
48                          nt_errstr(status)));
49                 return;
50         }
51
52         conn = server_setup_connection(ev, server_socket, sock, t, socket_get_fd(sock));
53         if (!conn) {
54                 DEBUG(0,("server_setup_connection(ev, server_socket, sock, t) failed\n"));
55                 return;
56         }
57
58         talloc_steal(conn, sock);
59
60         DLIST_ADD(server_socket->connection_list,conn);
61
62         /* return to event handling */
63         return;
64 }
65
66
67
68 /* called when a SMB connection goes down */
69 static void single_terminate_connection(struct server_connection *conn, const char *reason) 
70 {
71         DEBUG(2,("single_terminate_connection: reason[%s]\n",reason));
72
73         if (conn) {
74                 talloc_free(conn);
75         }
76 }
77
78 static int single_get_id(struct smbsrv_request *req)
79 {
80         return (int)req->smb_conn->pid;
81 }
82
83 static void single_exit_server(struct server_context *srv_ctx, const char *reason)
84 {
85         DEBUG(1,("single_exit_server: reason[%s]\n",reason));
86 }
87
88 /*
89   initialise the single process model, registering ourselves with the process model subsystem
90  */
91 NTSTATUS process_model_single_init(void)
92 {
93         NTSTATUS ret;
94         struct model_ops ops;
95
96         ZERO_STRUCT(ops);
97
98         /* fill in our name */
99         ops.name = "single";
100
101         /* fill in all the operations */
102         ops.model_startup               = single_start_server;
103         ops.accept_connection           = single_accept_connection;
104         ops.terminate_connection        = single_terminate_connection;
105         ops.exit_server                 = single_exit_server;
106         ops.get_id                      = single_get_id;
107
108         /* register ourselves with the PROCESS_MODEL subsystem. */
109         ret = register_backend("process_model", &ops);
110         if (!NT_STATUS_IS_OK(ret)) {
111                 DEBUG(0,("Failed to register process_model 'single'!\n"));
112                 return ret;
113         }
114
115         return ret;
116 }