Allow set_driver to fail and handle this case.
[cascardo/rnetproxy.git] / popproxy.c
1 /*
2 ** Copyright (C) 2006 Thadeu Lima de Souza Cascardo <cascardo@minaslivre.org>
3 ** Copyright (C) 2009 Thadeu Lima de Souza Cascardo <cascardo@holoscopio.com>
4 **  
5 ** This program is free software; you can redistribute it and/or modify
6 ** it under the terms of the GNU General Public License as published by
7 ** the Free Software Foundation; either version 2 of the License, or
8 ** (at your option) any later version.
9 **  
10 ** This program is distributed in the hope that it will be useful,
11 ** but WITHOUT ANY WARRANTY; without even the implied warranty of
12 ** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13 ** GNU General Public License for more details.
14 **  
15 ** You should have received a copy of the GNU General Public License
16 ** along with this program; if not, write to the Free Software
17 ** Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
18 **  
19 */
20
21 #include <glib.h>
22 #include <stdio.h>
23 #include <stdlib.h>
24 #include <unistd.h>
25 #include <gnutls/gnutls.h>
26 #include <netinet/in.h>
27 #include <arpa/inet.h>
28 #include "log.h"
29 #include "pop.h"
30
31 #include "hcconn.h"
32 #include "tcp_connect.h"
33
34 #define CONFFILE SYSCONFDIR "/popproxy.conf"
35
36 struct pop_address
37 {
38   char *server;
39   char *port;
40 };
41
42 static HCConn *
43 server_conn_new (char *server, char *port)
44 {
45   int fd;
46   HCConn *conn;
47   HCConn *ssl_conn;
48   int r;
49   fd = hc_tcp_connect (server, port);
50   if (fd < 0)
51     {
52       g_warning ("Could not connect to server at %s:%s.", server, port);
53       return NULL;
54     }
55   conn = hc_conn_new (NULL, NULL);
56   ssl_conn = hc_conn_new (NULL, NULL);
57   r = hc_conn_set_driver_channel (conn, fd);
58   if (r != 0)
59     {
60       hc_conn_close (ssl_conn);
61       hc_conn_close (conn);
62       close (fd);
63       return NULL;
64     }
65   r = hc_conn_set_driver_ssl_client (ssl_conn, conn);
66   if (r != 0)
67     {
68       hc_conn_close (ssl_conn);
69       hc_conn_close (conn);
70       return NULL;
71     }
72   return ssl_conn;
73 }
74
75 static void
76 push_other (HCConn *conn, HCEvent event, gpointer data)
77 {
78   char buffer[4096];
79   int r;
80   switch (event)
81     {
82     case HC_EVENT_READ:
83       while ((r = hc_conn_read (conn, buffer, sizeof (buffer))) > 0)
84         hc_conn_write (data, buffer, r);
85       break;
86     case HC_EVENT_CLOSE:
87       hc_conn_close (conn);
88       hc_conn_close (data);
89       break;
90     }
91 }
92
93 static void
94 new_client (int fd, struct sockaddr *addr, socklen_t saddr, gpointer data)
95 {
96   HCConn *conn;
97   HCConn *pop_conn;
98   HCConn *server_conn;
99   struct pop_address *address = data;
100   int r;
101   if (fd < 0)
102     {
103       g_critical ("Server has received an error event.");
104       return;
105     }
106   g_message ("Received connection from %s.",
107              inet_ntoa (((struct sockaddr_in *) addr)->sin_addr));
108
109   server_conn = server_conn_new (address->server, address->port);
110   if (server_conn == NULL)
111     {
112       return;
113     }
114
115   conn = hc_conn_new (NULL, NULL);
116   r = hc_conn_set_driver_channel (conn, fd);
117   if (r != 0)
118     {
119       hc_conn_close (server_conn);
120       hc_conn_close (conn);
121       close (fd);
122       return;
123     }
124   pop_conn = hc_conn_new (NULL, NULL);
125   r = hc_conn_set_driver_pop (pop_conn, conn);
126   if (r != 0)
127     {
128       hc_conn_close (server_conn);
129       hc_conn_close (pop_conn);
130       hc_conn_close (conn);
131       return;
132     }
133   hc_conn_set_callback (pop_conn, push_other, server_conn);
134   hc_conn_set_callback (server_conn, push_other, pop_conn);
135
136 }
137
138 static gchar *configfile;
139 static gboolean foreground;
140
141 static GOptionEntry opt_entries[] =
142   {
143     { "config-file", 'c', 0, G_OPTION_ARG_FILENAME, &configfile,
144       "Configuration file location", "file" },
145     { "foreground", 'f', 0, G_OPTION_ARG_NONE, &foreground,
146       "Run in foreground", 0 },
147     { NULL }
148   };
149
150 int main (int argc, char **argv)
151 {
152
153   GOptionContext *opt_ctx;
154   GKeyFile *keyfile;
155   GError *error;
156   int server_fd;
157   gchar *conf_address;
158   gchar *port;
159   gchar *server_address;
160   gchar *server_port;
161   struct pop_address pop_address;
162
163   gnutls_global_init ();
164
165   configfile = CONFFILE;
166   opt_ctx = g_option_context_new ("");
167   g_option_context_add_main_entries (opt_ctx, opt_entries, NULL);
168
169   error = NULL;
170   if (!g_option_context_parse (opt_ctx, &argc, &argv, &error))
171     {
172       g_critical ("Could not parse command line options: %s.",
173                   error->message);
174       g_error_free (error);
175       exit (1);
176     }
177   g_option_context_free (opt_ctx);
178   
179   keyfile = g_key_file_new ();
180
181   error = NULL;
182   if (g_key_file_load_from_file (keyfile, configfile,
183                                  G_KEY_FILE_NONE, &error) == FALSE)
184     {
185       g_critical ("Could not load configuration file %s: %s.",
186                   configfile, error->message);
187       g_error_free (error);
188       exit (1);
189     }
190
191   error = NULL;
192   conf_address = g_key_file_get_string (keyfile, "global", "address",
193                                         &error);
194   if (conf_address == NULL && error != NULL)
195     {
196       conf_address = g_strdup ("0.0.0.0");
197       g_error_free (error);
198     }
199   error = NULL;
200   port = g_key_file_get_string (keyfile, "global", "port", &error);
201   if (port == NULL && error != NULL)
202     {
203       port = g_strdup ("110");
204       g_error_free (error);
205     }
206   error = NULL;
207   server_address = g_key_file_get_string (keyfile, "global", "server",
208                                           &error);
209   if (server_address == NULL && error != NULL)
210     {
211       server_address = g_strdup ("127.0.0.1");
212       g_error_free (error);
213     }
214   error = NULL;
215   server_port = g_key_file_get_string (keyfile, "global", "server_port",
216                                        &error);
217   if (server_port == NULL && error != NULL)
218     {
219       server_port = g_strdup ("995");
220       g_error_free (error);
221     }
222
223   pop_address.server = server_address;
224   pop_address.port = server_port;
225
226   server_fd = hc_tcp_server (port);
227   if (server_fd < 0)
228     {
229       g_critical ("Could not create server.");
230       exit (1);
231     }
232   hc_server_add_watch (server_fd, new_client, &pop_address);
233
234   pop_log_init ();
235
236   g_message ("Listening at %s:%s.", conf_address, port);
237
238   if (!foreground)
239     daemon (0, 0);
240
241   g_free (conf_address);
242   g_free (port);
243
244   g_main_loop_run (g_main_loop_new (g_main_context_default (), TRUE));
245
246   gnutls_global_deinit ();
247
248   g_free (server_address);
249   g_free (server_port);
250
251   return 0;
252
253 }