Training courses

Kernel and Embedded Linux

Bootlin training courses

Embedded Linux, kernel,
Yocto Project, Buildroot, real-time,
graphics, boot time, debugging...

Bootlin logo

Elixir Cross Referencer

/*-
 * Copyright (c) 2009,2010 The NetBSD Foundation, Inc.
 * All rights reserved.
 *
 * This code is derived from software contributed to The NetBSD Foundation
 * by Alistair Crooks (agc@NetBSD.org)
 *
 * Redistribution and use in source and binary forms, with or without
 * modification, are permitted provided that the following conditions
 * are met:
 * 1. Redistributions of source code must retain the above copyright
 *    notice, this list of conditions and the following disclaimer.
 * 2. Redistributions in binary form must reproduce the above copyright
 *    notice, this list of conditions and the following disclaimer in the
 *    documentation and/or other materials provided with the distribution.
 *
 * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
 * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
 * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
 * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
 * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
 * POSSIBILITY OF SUCH DAMAGE.
 */
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif

#include <sys/types.h>
#include <sys/param.h>
#include <sys/stat.h>

#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <unistd.h>

#include "hkpd.h"

#define HAVE_DAEMON	1

/* set the home directory value to "home/subdir" */
static int
set_homedir(netpgp_t *netpgp, char *home, const char *subdir, const int quiet)
{
	struct stat	st;
	char		d[MAXPATHLEN];

	if (home == NULL) {
		if (!quiet) {
			(void) fprintf(stderr, "NULL HOME directory\n");
		}
		return 0;
	}
	(void) snprintf(d, sizeof(d), "%s%s", home, (subdir) ? subdir : "");
	if (stat(d, &st) == 0) {
		if ((st.st_mode & S_IFMT) == S_IFDIR) {
			netpgp_setvar(netpgp, "homedir", d);
			return 1;
		}
		(void) fprintf(stderr, "netpgp: homedir \"%s\" is not a dir\n",
					d);
		return 0;
	}
	if (!quiet) {
		(void) fprintf(stderr,
			"netpgp: warning homedir \"%s\" not found\n", d);
	}
	return 1;
}

int
main(int argc, char **argv)
{
	netpgp_t	 netpgp;
	char		*family;
	char		*host;
	int		 daemonise;
	int		 port;
	int		 sock6;
	int		 sock4;
	int		 i;

	(void) memset(&netpgp, 0x0, sizeof(netpgp));
	/* set some defaults */
	set_homedir(&netpgp, getenv("HOME"), "/.gnupg", 1);
	port = 11371;
	host = strdup("localhost");
	daemonise = 1;
	family = strdup("46");
	while ((i = getopt(argc, argv, "DH:S:Vf:h:p:v:")) != -1) {
		switch(i) {
		case 'D':
			daemonise = 0;
			break;
		case 'H':
			set_homedir(&netpgp, optarg, NULL, 0);
			break;
		case 'S':
			netpgp_setvar(&netpgp, "ssh keys", "1");
			netpgp_setvar(&netpgp, "sshkeyfile", optarg);
			break;
		case 'V':
			printf("%s: Version %d\n", *argv, HKPD_VERSION);
			exit(EXIT_SUCCESS);
		case 'f':
			(void) free(family);
			family = strdup(optarg);
			break;
		case 'h':
			(void) free(host);
			host = strdup(optarg);
			break;
		case 'p':
			port = atoi(optarg);
			break;
		case 'v':
			netpgp_set_debug(optarg);
			break;
		default:
			break;
		}
	}
#ifdef HAVE_DAEMON
	/* if we are supposed to be a daemon, detach from controlling tty */
	if (daemonise && daemon(0, 0) < 0) {
		(void) fprintf(stderr, "daemon() failed\n");
		exit(EXIT_FAILURE);
	}
#endif 
	if (!netpgp_init(&netpgp)) {
		(void) fprintf(stderr, "can't initialise\n");
		exit(EXIT_FAILURE);
	}
	sock4 = sock6 = -1;
	if (strchr(family, '4') != NULL &&
	    (sock4 = hkpd_sock_bind(host, port, 4)) < 0) {
		(void) fprintf(stderr,"hkpd: can't bind inet4 socket\n");
	}
	if (strchr(family, '6') != NULL &&
	    (sock6 = hkpd_sock_bind(host, port, 6)) < 0) {
		(void) fprintf(stderr,"hkpd: can't bind inet6 socket\n");
	}
	if (sock4 < 0 && sock6 < 0) {
		(void) fprintf(stderr,"hkpd: no sockets available\n");
		exit(EXIT_FAILURE);
	}
	hkpd(&netpgp, sock4, sock6);
}