updates.
[silc.git] / apps / silcd / silcd.c
1 /*
2
3   silcd.c
4   
5   Author: Pekka Riikonen <priikone@poseidon.pspt.fi>
6
7   Copyright (C) 1997 - 2001 Pekka Riikonen
8
9   This program is free software; you can redistribute it and/or modify
10   it under the terms of the GNU General Public License as published by
11   the Free Software Foundation; either version 2 of the License, or
12   (at your option) any later version.
13   
14   This program is distributed in the hope that it will be useful,
15   but WITHOUT ANY WARRANTY; without even the implied warranty of
16   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17   GNU General Public License for more details.
18
19 */
20 /* 
21  * Created: Wed Mar 19 00:17:12 1997
22  *
23  * This is the main program for the SILC daemon. This parses command
24  * line arguments and creates the server object.
25  */
26 /* $Id$ */
27
28 #include "serverincludes.h"
29 #include "server_internal.h"
30 #include "version.h"
31
32 static void silc_usage();
33 static char *silc_server_create_identifier();
34 static int 
35 silc_server_create_key_pair(char *pkcs_name, int bits, char *path,
36                             char *identifier, 
37                             SilcPublicKey *ret_pub_key,
38                             SilcPrivateKey *ret_prv_key);
39
40 /* Long command line options */
41 static struct option long_opts[] = 
42 {
43   { "config-file", 1, NULL, 'f' },
44   { "debug", 0, NULL, 'd' },
45   { "help", 0, NULL, 'h' },
46   { "version", 0, NULL,'V' },
47
48   /* Key management options */
49   { "create-key-pair", 1, NULL, 'C' },
50   { "pkcs", 1, NULL, 10 },
51   { "bits", 1, NULL, 11 },
52
53   { NULL, 0, NULL, 0 }
54 };
55
56 /* Command line option variables */
57 static bool opt_create_keypair = FALSE;
58 static char *opt_keypath = NULL;
59 static char *opt_pkcs = "rsa";
60 static int opt_bits = 1024;
61
62 /* Prints out the usage of silc client */
63
64 static void silc_usage()
65 {
66   printf("\
67 Usage: silcd [options]\n\
68 \n\
69   Generic Options:\n\
70   -f  --config-file=FILE        Alternate configuration file\n\
71   -d  --debug                   Enable debugging (no daemon)\n\
72   -h  --help                    Display this message\n\
73   -V  --version                 Display version\n\
74 \n\
75   Key Management Options:\n\
76   -C, --create-key-pair=PATH    Create new public key pair\n\
77       --pkcs=PKCS               Set the PKCS of the public key pair\n\
78       --bits=VALUE              Set length of the public key pair\n\
79 \n");
80   exit(0);
81 }
82
83 int main(int argc, char **argv)
84 {
85   int ret;
86   int opt, option_index;
87   char *config_file = NULL;
88   SilcServer silcd;
89
90   silc_debug = FALSE;
91
92   /* Parse command line arguments */
93   if (argc > 1) {
94     while ((opt = getopt_long(argc, argv, "cf:dhVC:",
95                               long_opts, &option_index)) != EOF) {
96       switch(opt) 
97         {
98         case 'h':
99           silc_usage();
100           break;
101         case 'V':
102           printf("SILCd Secure Internet Live Conferencing daemon, "
103                  "version %s\n", silc_version);
104           printf("(c) 1997 - 2001 Pekka Riikonen "
105                  "<priikone@poseidon.pspt.fi>\n");
106           exit(0);
107           break;
108         case 'd':
109           silc_debug = TRUE;
110           break;
111         case 'f':
112           config_file = strdup(optarg);
113           break;
114
115           /*
116            * Key management options
117            */
118         case 'C':
119           opt_create_keypair = TRUE;
120           if (optarg)
121             opt_keypath = strdup(optarg);
122           break;
123         case 10:
124           if (optarg)
125             opt_pkcs = strdup(optarg);
126           break;
127         case 11:
128           if (optarg)
129             opt_bits = atoi(optarg);
130           break;
131
132         default:
133           silc_usage();
134           break;
135         }
136     }
137   }
138
139   if (opt_create_keypair == TRUE) {
140     /* Create new key pair and exit */
141     silc_server_create_key_pair(opt_pkcs, opt_bits, opt_keypath,
142                                 NULL, NULL, NULL);
143     exit(0);
144   }
145
146   /* Default configuration file */
147   if (!config_file)
148     config_file = strdup(SILC_SERVER_CONFIG_FILE);
149
150   /* Create SILC Server object */
151   ret = silc_server_alloc(&silcd);
152   if (ret == FALSE)
153     goto fail;
154
155   /* Read configuration files */
156   silcd->config = silc_server_config_alloc(config_file);
157   if (silcd->config == NULL)
158     goto fail;
159
160   /* Initialize the server */
161   ret = silc_server_init(silcd);
162   if (ret == FALSE)
163     goto fail;
164
165   if (silc_debug == FALSE)
166     /* Before running the server, fork to background and set
167        both user and group no non-root */    
168     silc_server_daemonise(silcd);
169   
170   /* Run the server. When this returns the server has been stopped
171      and we will exit. */
172   silc_server_run(silcd);
173   
174   /* Stop the server. This probably has been done already but it
175      doesn't hurt to do it here again. */
176   silc_server_stop(silcd);
177   silc_server_free(silcd);
178   
179   exit(0);
180  fail:
181   exit(1);
182 }
183
184 /* Returns identifier string for public key generation. */
185
186 static char *silc_server_create_identifier()
187 {
188   char *username = NULL, *realname = NULL;
189   char hostname[256], email[256];
190   
191   /* Get realname */
192   realname = silc_get_real_name();
193
194   /* Get hostname */
195   memset(hostname, 0, sizeof(hostname));
196   gethostname(hostname, sizeof(hostname));
197
198   /* Get username (mandatory) */
199   username = silc_get_username();
200   if (!username)
201     return NULL;
202
203   /* Create default email address, whether it is right or not */
204   snprintf(email, sizeof(email), "%s@%s", username, hostname);
205
206   return silc_pkcs_encode_identifier(username, hostname, realname, email,
207                                      NULL, NULL);
208 }
209
210 /* Creates new public key and private key pair. This is used only
211    when user wants to create new key pair from command line. */
212
213 static int 
214 silc_server_create_key_pair(char *pkcs_name, int bits, char *path,
215                             char *identifier, 
216                             SilcPublicKey *ret_pub_key,
217                             SilcPrivateKey *ret_prv_key)
218 {
219   SilcPKCS pkcs;
220   SilcPublicKey pub_key;
221   SilcPrivateKey prv_key;
222   SilcRng rng;
223   unsigned char *key;
224   uint32 key_len;
225   char pkfile[256], prvfile[256];
226
227   if (!pkcs_name || !path)
228     return FALSE;
229
230   if (!silc_pkcs_is_supported(pkcs_name)) {
231     fprintf(stderr, "Unsupported PKCS `%s'", pkcs_name);
232     return FALSE;
233   }
234
235   if (!bits)
236     bits = 1024;
237
238   if (!identifier)
239     identifier = silc_server_create_identifier();
240
241   rng = silc_rng_alloc();
242   silc_rng_init(rng);
243   silc_rng_global_init(rng);
244
245   snprintf(pkfile, sizeof(pkfile) - 1, "%s%s", path,
246            SILC_SERVER_PUBLIC_KEY_NAME);
247   snprintf(prvfile, sizeof(prvfile) - 1, "%s%s", path,
248            SILC_SERVER_PRIVATE_KEY_NAME);
249
250   /* Generate keys */
251   silc_pkcs_alloc(pkcs_name, &pkcs);
252   pkcs->pkcs->init(pkcs->context, bits, rng);
253
254   /* Save public key into file */
255   key = silc_pkcs_get_public_key(pkcs, &key_len);
256   pub_key = silc_pkcs_public_key_alloc(pkcs->pkcs->name, identifier,
257                                        key, key_len);
258   silc_pkcs_save_public_key(pkfile, pub_key, SILC_PKCS_FILE_PEM);
259   if (ret_pub_key)
260     *ret_pub_key = pub_key;
261   else
262     silc_pkcs_public_key_free(pub_key);
263
264   memset(key, 0, sizeof(key_len));
265   silc_free(key);
266
267   /* Save private key into file */
268   key = silc_pkcs_get_private_key(pkcs, &key_len);
269   prv_key = silc_pkcs_private_key_alloc(pkcs->pkcs->name, key, key_len);
270   silc_pkcs_save_private_key(prvfile, prv_key, NULL, SILC_PKCS_FILE_BIN);
271   if (ret_prv_key)
272     *ret_prv_key = prv_key;
273   else
274     silc_pkcs_private_key_free(prv_key);
275
276   printf("Public key has been saved into `%s'\n", pkfile);
277   printf("Private key has been saved into `%s'\n", prvfile);
278
279   memset(key, 0, sizeof(key_len));
280   silc_free(key);
281
282   silc_rng_free(rng);
283   silc_pkcs_free(pkcs);
284
285   return TRUE;
286 }