Remove dependency on nethook and null hook.
[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   conn = hc_conn_new (NULL, NULL);
49   ssl_conn = hc_conn_new (NULL, NULL);
50   fd = hc_tcp_connect (server, port);
51   hc_conn_set_driver_channel (conn, fd);
52   hc_conn_set_driver_ssl (ssl_conn, conn);
53   return ssl_conn;
54 }
55
56 static void
57 push_other (HCConn *conn, HCEvent event, gpointer data)
58 {
59   char buffer[4096];
60   int r;
61   switch (event)
62     {
63     case HC_EVENT_READ:
64       while ((r = hc_conn_read (conn, buffer, sizeof (buffer))) > 0)
65         hc_conn_write (data, buffer, r);
66       break;
67     case HC_EVENT_CLOSE:
68       hc_conn_close (conn);
69       hc_conn_close (data);
70       break;
71     }
72 }
73
74 static void
75 new_client (int fd, struct sockaddr *addr, socklen_t saddr, gpointer data)
76 {
77   HCConn *conn;
78   HCConn *server_conn;
79   net_hook_t *hook;
80   struct pop_address *address = data;
81   if (fd < 0)
82     {
83       g_critical ("Server has received an error event.");
84       return;
85     }
86   g_message ("Received connection from %s.",
87              inet_ntoa (((struct sockaddr_in *) addr)->sin_addr));
88   conn = hc_conn_new (NULL, NULL);
89   hc_conn_set_driver_channel (conn, fd);
90   server_conn = server_conn_new (address->server, address->port);
91   hc_conn_set_callback (conn, push_other, server_conn);
92   hc_conn_set_callback (server_conn, push_other, conn);
93 }
94
95 static gchar *configfile;
96 static gboolean foreground;
97
98 static GOptionEntry opt_entries[] =
99   {
100     { "config-file", 'c', 0, G_OPTION_ARG_FILENAME, &configfile,
101       "Configuration file location", "file" },
102     { "foreground", 'f', 0, G_OPTION_ARG_NONE, &foreground,
103       "Run in foreground", 0 },
104     { NULL }
105   };
106
107 int main (int argc, char **argv)
108 {
109
110   GOptionContext *opt_ctx;
111   GKeyFile *keyfile;
112   GError *error;
113   int server_fd;
114   gchar *conf_address;
115   gchar *port;
116   gchar *server_address;
117   gchar *server_port;
118   struct pop_address pop_address;
119
120   gnutls_global_init ();
121
122   configfile = CONFFILE;
123   opt_ctx = g_option_context_new ("");
124   g_option_context_add_main_entries (opt_ctx, opt_entries, NULL);
125
126   error = NULL;
127   if (!g_option_context_parse (opt_ctx, &argc, &argv, &error))
128     {
129       g_critical ("Could not parse command line options: %s.",
130                   error->message);
131       g_error_free (error);
132       exit (1);
133     }
134   g_option_context_free (opt_ctx);
135   
136   keyfile = g_key_file_new ();
137
138   error = NULL;
139   if (g_key_file_load_from_file (keyfile, configfile,
140                                  G_KEY_FILE_NONE, &error) == FALSE)
141     {
142       g_critical ("Could not load configuration file %s: %s.",
143                   configfile, error->message);
144       g_error_free (error);
145       exit (1);
146     }
147
148   error = NULL;
149   conf_address = g_key_file_get_string (keyfile, "global", "address",
150                                         &error);
151   if (conf_address == NULL && error != NULL)
152     {
153       conf_address = g_strdup ("0.0.0.0");
154       g_error_free (error);
155     }
156   error = NULL;
157   port = g_key_file_get_string (keyfile, "global", "port", &error);
158   if (port == NULL && error != NULL)
159     {
160       port = g_strdup ("110");
161       g_error_free (error);
162     }
163   error = NULL;
164   server_address = g_key_file_get_string (keyfile, "global", "server",
165                                           &error);
166   if (server_address == NULL && error != NULL)
167     {
168       server_address = g_strdup ("127.0.0.1");
169       g_error_free (error);
170     }
171   error = NULL;
172   server_port = g_key_file_get_string (keyfile, "global", "server_port",
173                                        &error);
174   if (server_port == NULL && error != NULL)
175     {
176       server_port = g_strdup ("995");
177       g_error_free (error);
178     }
179
180   pop_address.server = server_address;
181   pop_address.port = server_port;
182
183   server_fd = hc_tcp_server (port);
184   if (server_fd < 0)
185     {
186       g_critical ("Could not create server.");
187       exit (1);
188     }
189   hc_server_add_watch (server_fd, new_client, &pop_address);
190
191   pop_log_init ();
192
193   g_message ("Listening at %s:%s.", conf_address, port);
194
195   if (!foreground)
196     daemon (0, 0);
197
198   g_free (conf_address);
199   g_free (port);
200
201   g_main_loop_run (g_main_loop_new (g_main_context_default (), TRUE));
202
203   gnutls_global_deinit ();
204
205   g_free (server_address);
206   g_free (server_port);
207
208   return 0;
209
210 }