r2588: connect/disconnect is common enough that I don't think a level 0 DEBUG
[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, 0);
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);
53         if (!conn) {
54                 DEBUG(0,("server_setup_connection(ev, server_socket, sock, t) failed\n"));
55                 return;
56         }
57
58         DLIST_ADD(server_socket->connection_list,conn);
59
60         /* return to event handling */
61         return;
62 }
63
64
65
66 /* called when a SMB connection goes down */
67 static void single_terminate_connection(struct server_connection *conn, const char *reason) 
68 {
69         DEBUG(2,("single_terminate_connection: reason[%s]\n",reason));
70
71         if (conn) {
72                 if (conn->service) {
73                         conn->service->ops->close_connection(conn,reason);
74                 }
75
76                 if (conn->server_socket) {
77                         DLIST_REMOVE(conn->server_socket->connection_list,conn);
78                 }
79
80                 server_destroy_connection(conn);
81         }
82 }
83
84 static int single_get_id(struct smbsrv_request *req)
85 {
86         return (int)req->smb_conn->pid;
87 }
88
89 static void single_exit_server(struct server_context *srv_ctx, const char *reason)
90 {
91         DEBUG(1,("single_exit_server: reason[%s]\n",reason));
92 }
93
94 /*
95   initialise the single process model, registering ourselves with the process model subsystem
96  */
97 NTSTATUS process_model_single_init(void)
98 {
99         NTSTATUS ret;
100         struct model_ops ops;
101
102         ZERO_STRUCT(ops);
103
104         /* fill in our name */
105         ops.name = "single";
106
107         /* fill in all the operations */
108         ops.model_startup               = single_start_server;
109         ops.accept_connection           = single_accept_connection;
110         ops.terminate_connection        = single_terminate_connection;
111         ops.exit_server                 = single_exit_server;
112         ops.get_id                      = single_get_id;
113
114         /* register ourselves with the PROCESS_MODEL subsystem. */
115         ret = register_backend("process_model", &ops);
116         if (!NT_STATUS_IS_OK(ret)) {
117                 DEBUG(0,("Failed to register process_model 'single'!\n"));
118                 return ret;
119         }
120
121         return ret;
122 }