Added support for SSL when connecting to server.
[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 <gnet.h>
23 #include <stdio.h>
24 #include <unistd.h>
25 #include <gnutls/gnutls.h>
26 #include "log.h"
27 #include "nethook.h"
28 #include "null.h"
29 #include "ssl.h"
30
31 #define CONFFILE SYSCONFDIR "/popproxy.conf"
32
33 void new_client (GServer* server, GConn* conn, gpointer data)
34 {
35   net_hook_t* hook;
36   if (conn == NULL)
37     {
38       g_critical ("Server has received an error event.");
39       return;
40     }
41   g_message ("Received connection from %s.", conn->hostname);
42   hook = ssl_hook_new (conn, data);
43   gnet_conn_read (conn);
44 }
45
46 static gchar* configfile;
47
48 static GOptionEntry opt_entries[] =
49   {
50     { "config-file", 'c', 0, G_OPTION_ARG_FILENAME, &configfile,
51       "Configuration file location", "file" },
52     { NULL }
53   };
54
55 int main (int argc, char** argv)
56 {
57
58   GOptionContext* opt_ctx;
59   GKeyFile *keyfile;
60   GInetAddr* inetaddr;
61   gchar* conf_address;
62   gint port;
63   gchar *server_address;
64
65   gnutls_global_init ();
66   gnet_init ();
67   pop_log_init ();
68
69   configfile = CONFFILE;
70   opt_ctx = g_option_context_new ("");
71   g_option_context_add_main_entries (opt_ctx, opt_entries, NULL);
72   if (!g_option_context_parse (opt_ctx, &argc, &argv, NULL))
73     {
74       g_log (NULL, G_LOG_LEVEL_WARNING | G_LOG_FLAG_FATAL,
75              "Could not parse command line options.");
76     }
77   g_option_context_free (opt_ctx);
78   
79   keyfile =  g_key_file_new ();
80
81   g_key_file_load_from_file (keyfile, configfile, G_KEY_FILE_NONE, NULL);
82
83   conf_address = g_key_file_get_string (keyfile, "global", "address", NULL);
84   port = g_key_file_get_integer (keyfile, "global", "port", NULL);
85   server_address = g_key_file_get_string (keyfile, "global", "server", NULL);
86
87   g_message ("Listen address is %s:%d.", conf_address, port);
88
89   inetaddr = gnet_inetaddr_new_nonblock (conf_address, port);
90   gnet_server_new (inetaddr, port, new_client, server_address);
91
92   daemon (0, 0);
93
94   g_main_loop_run (g_main_loop_new (g_main_context_default (), TRUE));
95
96   gnutls_global_deinit ();
97
98   return 0;
99
100 }