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