1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134
|
#include <stdio.h>
#include <string.h>
#include <syslog.h>
#include <fcntl.h>
#include <sys/ioctl.h>
#include <rpc/rpc.h>
#include <rpc/pmap_clnt.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <sys/socket.h>
#include <arpa/inet.h>
#include <netdb.h>
#include <ctype.h>
#include <getopt.h>
#include <unistd.h>
#include "bootparam_prot.h"
int debug = 0;
int dolog = 0;
struct in_addr route_addr;
const char *bootpfile = "/etc/bootparams";
static char *progname;
static struct sockaddr_in my_addr;
static int route_addr_ok;
int
main(int argc, char **argv)
{
SVCXPRT *transp;
int s, pid;
struct hostent *he;
struct stat buf;
int c;
progname = rindex(argv[0],'/');
if (progname) progname++;
else progname = argv[0];
while ((c = getopt(argc, argv,"dsr:f:")) != EOF) {
switch (c) {
case 'd':
debug = 1;
break;
case 'r':
if (isdigit(*optarg)) {
route_addr_ok = inet_aton(optarg, &route_addr);
break;
}
else {
he = gethostbyname(optarg);
if (he) {
memcpy(&route_addr, he->h_addr, sizeof(route_addr));
route_addr_ok = 1;
break;
}
else {
fprintf(stderr,"%s: No such host %s\n", progname, optarg);
exit(1);
}
}
case 'f':
bootpfile = optarg;
break;
case 's':
dolog = 1;
#ifndef LOG_DAEMON
openlog(progname, 0 , 0);
#else
openlog(progname, 0 , LOG_DAEMON);
setlogmask(LOG_UPTO(LOG_NOTICE));
#endif
break;
default:
fprintf(stderr,
"Usage: %s [-d] [-s] [-r router] [-f bootparmsfile]\n",
argv[0]);
exit(1);
}
}
if (stat(bootpfile, &buf)) {
fprintf(stderr,"%s: ", progname);
perror(bootpfile);
exit(1);
}
if (!route_addr_ok) {
get_myaddress(&my_addr);
memcpy(&route_addr, &my_addr.sin_addr.s_addr, sizeof(route_addr));
}
if (!debug) {
pid = fork();
if (pid < 0) {
perror("bootparamd: fork");
exit(1);
}
if (pid) exit(0); /* parent */
/* child */
for (s=0; s<20; s++) close(s);
open("/", 0);
dup2(0, 1);
dup2(0, 2);
s = open("/dev/tty",2);
if ( s >= 0 ) {
ioctl(s, TIOCNOTTY, 0);
close(s);
}
}
(void)pmap_unset(BOOTPARAMPROG, BOOTPARAMVERS);
transp = svcudp_create(RPC_ANYSOCK);
if (transp == NULL) {
(void)fprintf(stderr, "cannot create udp service.\n");
exit(1);
}
if (!svc_register(transp, BOOTPARAMPROG, BOOTPARAMVERS,
bootparamprog_1, IPPROTO_UDP))
{
fprintf(stderr,
"unable to register (BOOTPARAMPROG, BOOTPARAMVERS, udp).\n");
exit(1);
}
svc_run();
(void)fprintf(stderr, "svc_run returned\n");
exit(1);
}
|