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