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 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213
|
/*
* Program entry and command line parsing
*
* Copyright (C) 2007-2008 Xavier Carcelle <xavier.carcelle@gmail.com>
* Florian Fainelli <florian@openwrt.org>
* Nicolas Thill <nico@openwrt.org>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
/*
* In addition, as a special exception, the copyright holders give
* permission to link the code of portions of this program with the
* OpenSSL library under certain conditions as described in each
* individual source file, and distribute linked combinations
* including the two.
* You must obey the GNU General Public License in all respects
* for all of the code used other than OpenSSL. If you modify
* file(s) with this exception, you may extend this exception to your
* version of the file(s), but you are not obligated to do so. If you
* do not wish to do so, delete this exception statement from your
* version. If you delete this exception statement from all source
* files in the program, then also delete it here.
*/
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include <sys/types.h>
#include "faifa.h"
#include "faifa_compat.h"
#ifndef FAIFA_PROG
#define FAIFA_PROG "faifa"
#endif
/* Command line arguments storing */
int opt_help = 0;
int opt_interactive = 0;
int opt_key = 0;
extern FILE *err_stream;
extern FILE *out_stream;
extern FILE *in_stream;
/**
* error - display error message
*/
static void error(char *message)
{
fprintf(stderr, "%s: %s\n", FAIFA_PROG, message);
}
/**
* usage - show the program usage
*/
static void usage(void)
{
fprintf(stderr, "-i : interface\n"
"-m : show menu (no option required)\n"
"-a : station MAC address\n"
"-k : network key\n"
"-v : be verbose (default: no)\n"
"-e : error stream (default: stderr)\n"
"-o : output stream (default: stdout)\n"
"-s : input stream (default: stdin)\n"
"-h : this help\n");
}
extern void menu(faifa_t *faifa);
extern void set_key(char *macaddr);
/**
* main - main function of faifa
* @argc: number of arguments
* @argv: array of arguments
*/
int main(int argc, char **argv)
{
faifa_t *faifa;
char *opt_ifname = NULL;
char *opt_macaddr = NULL;
char *opt_err_stream = NULL;
char *opt_out_stream = NULL;
char *opt_in_stream = NULL;
int opt_verbose = 0;
int c;
int ret = 0;
u_int8_t addr[ETHER_ADDR_LEN] = { 0 };
fprintf(stdout, "Faifa for HomePlug AV (SVN revision %d)\n\n", SVN_REV);
if (argc < 2) {
usage();
return -1;
}
while ((c = getopt(argc, argv, "i:ma:k:ve:o:s:h")) != -1) {
switch (c) {
case 'i':
opt_ifname = optarg;
break;
case 'm':
opt_interactive = 1;
break;
case 'a':
opt_macaddr = optarg;
break;
case 'k':
opt_key = 1;
break;
case 'v':
opt_verbose = 1;
break;
case 'e':
opt_err_stream = optarg;
break;
case 'o':
opt_out_stream = optarg;
break;
case 's':
opt_in_stream = optarg;
break;
case 'h':
default:
opt_help = 1;
break;
}
}
if (opt_help) {
usage();
return -1;
}
if (opt_ifname == NULL)
opt_ifname = "eth0";
if (opt_err_stream == NULL)
err_stream = stderr;
else {
err_stream = fopen(opt_err_stream, "w+");
if (!err_stream) {
perror("err_stream");
return -1;
}
}
if (opt_out_stream == NULL)
out_stream = stdout;
else {
out_stream = fopen(opt_out_stream, "w+");
if (!out_stream) {
perror("out_stream");
return -1;
}
}
if (opt_in_stream == NULL)
in_stream = stdin;
else {
in_stream = fopen(opt_in_stream, "rb");
if (!in_stream) {
perror("in_stream");
return -1;
}
}
faifa = faifa_init();
if (faifa == NULL) {
error("can't initialize Faifa library");
return -1;
}
if (faifa_open(faifa, opt_ifname) == -1) {
error(faifa_error(faifa));
faifa_free(faifa);
return -1;
}
faifa_set_verbose(faifa, opt_verbose);
if (opt_macaddr) {
ret = faifa_parse_mac_addr(faifa, opt_macaddr, addr);
if (ret < 0) {
error(faifa_error(faifa));
goto out_error;
}
faifa_set_dst_addr(faifa, addr);
}
if (opt_interactive)
menu(faifa);
out_error:
faifa_close(faifa);
faifa_free(faifa);
return ret;
}
|