Separate iochannel implementation from HCConn interface.
[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 "nethook.h"
30 #include "null.h"
31 #include "ssl.h"
32 #include "pop.h"
33
34 #include "hcconn.h"
35 #include "tcp_connect.h"
36
37 #define CONFFILE SYSCONFDIR "/popproxy.conf"
38
39 struct pop_address
40 {
41   char *server;
42   char *port;
43 };
44
45 void new_client (int fd, struct sockaddr* addr, socklen_t saddr, gpointer data)
46 {
47   HCConn *conn;
48   net_hook_t* hook;
49   struct pop_address *address = data;
50   if (fd < 0)
51     {
52       g_critical ("Server has received an error event.");
53       return;
54     }
55   g_message ("Received connection from %s.",
56              inet_ntoa (((struct sockaddr_in *) addr)->sin_addr));
57   conn = hc_conn_new (NULL, NULL);
58   hc_conn_set_driver_channel (conn, fd);
59   hook = ssl_hook_new (conn, address->server, address->port);
60   pop_hook_new (hook);
61 }
62
63 static gchar* configfile;
64
65 static GOptionEntry opt_entries[] =
66   {
67     { "config-file", 'c', 0, G_OPTION_ARG_FILENAME, &configfile,
68       "Configuration file location", "file" },
69     { NULL }
70   };
71
72 int main (int argc, char** argv)
73 {
74
75   GOptionContext* opt_ctx;
76   GKeyFile *keyfile;
77   GError *error;
78   int server_fd;
79   gchar* conf_address;
80   gchar* port;
81   gchar *server_address;
82   gchar *server_port;
83   struct pop_address pop_address;
84
85   gnutls_global_init ();
86   pop_log_init ();
87
88   configfile = CONFFILE;
89   opt_ctx = g_option_context_new ("");
90   g_option_context_add_main_entries (opt_ctx, opt_entries, NULL);
91   if (!g_option_context_parse (opt_ctx, &argc, &argv, NULL))
92     {
93       g_log (NULL, G_LOG_LEVEL_WARNING | G_LOG_FLAG_FATAL,
94              "Could not parse command line options.");
95     }
96   g_option_context_free (opt_ctx);
97   
98   keyfile =  g_key_file_new ();
99
100   error = NULL;
101   if (g_key_file_load_from_file (keyfile, configfile,
102                                  G_KEY_FILE_NONE, &error) == FALSE)
103     {
104       fprintf (stderr, "Could not load configuration file %s: %s.\n",
105                configfile, error->message);
106       g_error_free (error);
107       exit (1);
108     }
109
110   error = NULL;
111   conf_address = g_key_file_get_string (keyfile, "global", "address",
112                                         &error);
113   if (conf_address == NULL && error != NULL)
114     {
115       conf_address = g_strdup ("0.0.0.0");
116       g_error_free (error);
117     }
118   error = NULL;
119   port = g_key_file_get_string (keyfile, "global", "port", &error);
120   if (port == NULL && error != NULL)
121     {
122       port = g_strdup ("110");
123       g_error_free (error);
124     }
125   error = NULL;
126   server_address = g_key_file_get_string (keyfile, "global", "server",
127                                           &error);
128   if (server_address == NULL && error != NULL)
129     {
130       server_address = g_strdup ("127.0.0.1");
131       g_error_free (error);
132     }
133
134   server_port = g_key_file_get_string (keyfile, "global", "server_port",
135                                        &error);
136   if (server_port == NULL && error != NULL)
137     {
138       server_port = g_strdup ("995");
139       g_error_free (error);
140     }
141
142   pop_address.server = server_address;
143   pop_address.port = server_port;
144
145   server_fd = hc_tcp_server (port);
146   if (server_fd < 0)
147     {
148       fprintf (stderr, "Could not create server.\n");
149       exit (1);
150     }
151   hc_server_add_watch (server_fd, new_client, &pop_address);
152
153   g_message ("Listening at %s:%s.", conf_address, port);
154
155   daemon (0, 0);
156
157   g_free (conf_address);
158   g_free (port);
159
160   g_main_loop_run (g_main_loop_new (g_main_context_default (), TRUE));
161
162   gnutls_global_deinit ();
163
164   g_free (server_address);
165   g_free (server_port);
166
167   return 0;
168
169 }