39d837cca6782482a731b7d06726499bc2ce8cd7
[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 HCConn *
76 client_conn_new (int fd)
77 {
78   HCConn *conn;
79   HCConn *pop_conn;
80   int r;
81   conn = hc_conn_new (NULL, NULL);
82   r = hc_conn_set_driver_channel (conn, fd);
83   if (r != 0)
84     {
85       hc_conn_close (conn);
86       close (fd);
87       return NULL;
88     }
89   pop_conn = hc_conn_new (NULL, NULL);
90   r = hc_conn_set_driver_pop (pop_conn, conn);
91   if (r != 0)
92     {
93       hc_conn_close (pop_conn);
94       hc_conn_close (conn);
95       return NULL;
96     }
97   return pop_conn;
98 }
99
100 static void
101 push_other (HCConn *conn, HCEvent event, gpointer data)
102 {
103   char buffer[4096];
104   int r;
105   switch (event)
106     {
107     case HC_EVENT_READ:
108       while ((r = hc_conn_read (conn, buffer, sizeof (buffer))) > 0)
109         hc_conn_write (data, buffer, r);
110       break;
111     case HC_EVENT_CLOSE:
112       hc_conn_close (conn);
113       hc_conn_close (data);
114       break;
115     }
116 }
117
118 static void
119 new_client (int fd, struct sockaddr *addr, socklen_t saddr, gpointer data)
120 {
121   HCConn *client_conn;
122   HCConn *server_conn;
123   struct pop_address *address = data;
124   if (fd < 0)
125     {
126       g_critical ("Server has received an error event.");
127       return;
128     }
129
130   /* FIXME: Should be independent of address type. */
131   g_message ("Received connection from %s.",
132              inet_ntoa (((struct sockaddr_in *) addr)->sin_addr));
133
134   server_conn = server_conn_new (address->server, address->port);
135   if (server_conn == NULL)
136     {
137       return;
138     }
139   client_conn = client_conn_new (fd);
140   if (client_conn == NULL)
141     {
142       hc_conn_close (server_conn);
143       return;
144     }
145
146   hc_conn_set_callback (client_conn, push_other, server_conn);
147   hc_conn_set_callback (server_conn, push_other, client_conn);
148
149 }
150
151 static gchar *configfile;
152 static gboolean foreground;
153
154 static GOptionEntry opt_entries[] =
155   {
156     { "config-file", 'c', 0, G_OPTION_ARG_FILENAME, &configfile,
157       "Configuration file location", "file" },
158     { "foreground", 'f', 0, G_OPTION_ARG_NONE, &foreground,
159       "Run in foreground", 0 },
160     { NULL }
161   };
162
163 int main (int argc, char **argv)
164 {
165
166   GOptionContext *opt_ctx;
167   GKeyFile *keyfile;
168   GError *error;
169   int server_fd;
170   gchar *conf_address;
171   gchar *port;
172   gchar *server_address;
173   gchar *server_port;
174   struct pop_address pop_address;
175
176   gnutls_global_init ();
177
178   configfile = CONFFILE;
179   opt_ctx = g_option_context_new ("");
180   g_option_context_add_main_entries (opt_ctx, opt_entries, NULL);
181
182   error = NULL;
183   if (!g_option_context_parse (opt_ctx, &argc, &argv, &error))
184     {
185       g_critical ("Could not parse command line options: %s.",
186                   error->message);
187       g_error_free (error);
188       exit (1);
189     }
190   g_option_context_free (opt_ctx);
191   
192   keyfile = g_key_file_new ();
193
194   error = NULL;
195   if (g_key_file_load_from_file (keyfile, configfile,
196                                  G_KEY_FILE_NONE, &error) == FALSE)
197     {
198       g_critical ("Could not load configuration file %s: %s.",
199                   configfile, error->message);
200       g_error_free (error);
201       exit (1);
202     }
203
204   error = NULL;
205   conf_address = g_key_file_get_string (keyfile, "global", "address",
206                                         &error);
207   if (conf_address == NULL && error != NULL)
208     {
209       conf_address = g_strdup ("0.0.0.0");
210       g_error_free (error);
211     }
212   error = NULL;
213   port = g_key_file_get_string (keyfile, "global", "port", &error);
214   if (port == NULL && error != NULL)
215     {
216       port = g_strdup ("110");
217       g_error_free (error);
218     }
219   error = NULL;
220   server_address = g_key_file_get_string (keyfile, "global", "server",
221                                           &error);
222   if (server_address == NULL && error != NULL)
223     {
224       server_address = g_strdup ("127.0.0.1");
225       g_error_free (error);
226     }
227   error = NULL;
228   server_port = g_key_file_get_string (keyfile, "global", "server_port",
229                                        &error);
230   if (server_port == NULL && error != NULL)
231     {
232       server_port = g_strdup ("995");
233       g_error_free (error);
234     }
235
236   pop_address.server = server_address;
237   pop_address.port = server_port;
238
239   server_fd = hc_tcp_server (port);
240   if (server_fd < 0)
241     {
242       g_critical ("Could not create server.");
243       exit (1);
244     }
245   hc_server_add_watch (server_fd, new_client, &pop_address);
246
247   pop_log_init ();
248
249   g_message ("Listening at %s:%s.", conf_address, port);
250
251   if (!foreground)
252     daemon (0, 0);
253
254   g_free (conf_address);
255   g_free (port);
256
257   g_main_loop_run (g_main_loop_new (g_main_context_default (), TRUE));
258
259   gnutls_global_deinit ();
260
261   g_free (server_address);
262   g_free (server_port);
263
264   return 0;
265
266 }