]> CyberLeo.Net >> Repos - SourceForge/eyefi-config.git/blob - eyefi-unix.c
Add some new WEP code and some experimental non-working
[SourceForge/eyefi-config.git] / eyefi-unix.c
1 /*
2  * eyefi-unix.c
3  *
4  * Copyright (C) 2008 Dave Hansen <dave@sr71.net>
5  *
6  * This software may be redistributed and/or modified under the terms of
7  * the GNU General Public License ("GPL") version 2 as published by the
8  * Free Software Foundation.
9  */
10
11 #include "eyefi-config.h"
12
13 void print_pascal_string(struct pascal_string *str)
14 {
15         int i;
16         for (i = 0; i < str->length; i++)
17                 printf("%c", str->value[i]);
18 }
19
20 void print_mac(struct mac_address *mac)
21 {
22         int i;
23         for (i=0; i < MAC_BYTES-1; i++) {
24                 printf("%02x:", mac->mac[i]);
25         }
26         printf("%02x\n", mac->mac[i]);
27 }
28
29
30 void print_card_mac(void)
31 {
32         debug_printf(2, "%s()\n", __func__);
33         struct mac_address *mac;
34
35         card_info_cmd(MAC_ADDRESS);
36         mac = eyefi_response();
37         debug_printf(3, "%s() mac->length: %d\n", __func__, mac->length);
38         assert(mac->length == MAC_BYTES);
39         printf("card mac address: ");
40         print_mac(mac);
41 }
42
43 void print_card_firmware_info(void)
44 {
45         struct card_firmware_info *info = fetch_card_firmware_info();
46         printf("card firmware (len: %d): '", info->info.length);
47         print_pascal_string(&info->info);
48         printf("'\n");
49 }
50
51 void print_card_key(void)
52 {
53         debug_printf(2, "%s()\n", __func__);
54         struct card_info_rsp_key *foo = fetch_card_key();
55         printf("card key (len: %d): '", foo->key.length);
56         print_pascal_string(&foo->key);
57         printf("'\n");
58 }
59
60 void scan_print_nets(void)
61 {
62         int i;
63
64         debug_printf(2, "%s()\n", __func__);
65         struct scanned_net_list *scanned = scan_nets();
66         if (scanned->nr == 0) {
67                 printf("unable to detect any wireless networks\n");
68                 return;
69         }
70         printf("Scanned wireless networks:\n");
71         for (i=0; i < scanned->nr; i++) {
72                 struct scanned_net *net = &scanned->nets[i];
73                 printf("'%s' type(%d): %s, strength: %d\n", net->essid,
74                                 net->type,
75                                 net_type_name(net->type),
76                                 net->strength);
77         }
78 }
79
80 void print_configured_nets(void)
81 {
82         int ret;
83         int i;
84         struct configured_net_list *configured = fetch_configured_nets();
85
86         debug_printf(2, "%s()\n", __func__);
87         ret = issue_noarg_command('l');
88         if (ret) {
89                 printf("error issuing print networks command: %d\n", ret);
90                 return;
91         }
92         configured = eyefi_response();
93         if (configured->nr == 0) {
94                 printf("No wireless networks configured on card\n");
95                 return;
96         }
97         printf("configured wireless networks:\n");
98         for (i=0; i < configured->nr; i++) {
99                 struct configured_net *net = &configured->nets[i];
100                 printf("'%s'\n", net->essid);
101         }
102 }
103
104 int try_connection_to(char *essid, char *ascii_password)
105 {
106         int i;
107         int ret = -1;
108         const char *type;
109
110         eyefi_printf("trying to connect to network: '%s'\n", essid);
111         if (ascii_password)
112                 eyefi_printf(" with passphrase: '%s'\n", ascii_password);
113         fflush(NULL);
114
115         // test network
116         ret = network_action('t', essid, ascii_password);
117         if (ret)
118                 return ret;
119         u8 last_rsp = -1;
120
121         char rsp = '\0';
122         for (i=0; i < 200; i++) {
123                 struct byte_response *r;
124                 issue_noarg_command('s');
125                 r = eyefi_response();
126                 rsp = r->response;
127                 char *state = net_test_state_name(rsp);
128                 if (rsp == last_rsp) {
129                         eyefi_printf(".");
130                         fflush(NULL);;
131                 } else {
132                         if (rsp)
133                                 eyefi_printf("\nTesting connecion to '%s' (%d): %s", essid, rsp, state);
134                         last_rsp = rsp;
135                 }
136                 
137                 if (!strcmp("success", state)) {
138                         ret = 0;
139                         break;
140                 }
141                 if (!strcmp("not scanning", state))
142                         break;
143                 if (!strcmp("unknown", state))
144                         break;
145         }
146         eyefi_printf("\n");
147         if (!ret) {
148                 eyefi_printf("Succeeded connecting to: '%s'\n", essid);
149         } else {
150                 eyefi_printf("Unable to connect to: '%s' (final state: %d/'%s')\n", essid,
151                                 rsp, net_test_state_name(rsp));
152         }
153         return ret;
154 }
155
156 int print_log(void)
157 {
158         int i;
159         u8 *resbuf = malloc(EYEFI_BUF_SIZE*4);
160         int total_bytes;
161
162         total_bytes = get_log_into(resbuf);
163         if (total_bytes < 0) {
164                 debug_printf(1, "%s() error: %d\n", __func__, total_bytes);
165                 return total_bytes;
166         }
167         // The last byte *should* be a null, and the 
168         // official software does not print it.
169         for (i = 0; i < total_bytes-1; i++) {
170                 char c = resbuf[i];
171                 // the official software converts UNIX to DOS-style
172                 // line breaks, so we'll do the same
173                 if (c == '\n')
174                         printf("%c", '\r');
175                 printf("%c", c);
176         }
177         printf("\n");
178         // just some simple sanity checking to make sure what
179         // we are fetching looks valid
180         /* needs to be rethought for the new aligned logs
181         int null_bytes_left = 20;
182         if (resbuf[log_end] != 0) {
183                 debug_printf(2, "error: unexpected last byte (%ld/0x%lx) of log: %02x\n",
184                                 log_end, log_end, resbuf[log_end]);
185                 for (i=0; i<log_size; i++) {
186                         if (resbuf[i])
187                                 continue;
188                         if (null_bytes_left <= 0)
189                                 continue;
190                         null_bytes_left--;
191                         debug_printf(2, "null byte %d\n", i);
192                 }
193         }
194         */
195         return 0;
196 }
197
198 void open_error(char *file, int ret)
199 {
200         fprintf(stderr, "unable to open '%s' (%d)\n", file, ret);
201         fprintf(stderr, "Is the Eye-Fi card inserted and mounted at: %s ?\n", locate_eyefi_mount());
202         fprintf(stderr, "Do you have write permissions to it?\n");
203         fprintf(stderr, "debug information:\n");
204         if (eyefi_debug_level > 0)
205                 system("cat /proc/mounts >&2");
206         if (eyefi_debug_level > 1)
207                 perror("bad open");
208         exit(1);
209 }
210
211 void usage(void)
212 {
213         printf("Usage:\n");
214         printf("  eyefitest [OPTIONS]\n");
215         printf("  -a ESSID      add network (implies test unless --force)\n");
216         printf("  -t ESSID      test network\n");
217         printf("  -p KEY        set WPA key for add/test\n");
218         printf("  -r ESSID      remove network\n");
219         printf("  -s            scan for networks\n");
220         printf("  -c            list configured networks\n");
221         printf("  -b            reboot card\n");
222         printf("  -f            print information about card firmware\n");
223         printf("  -d level      set debugging level (default: 1)\n");
224         printf("  -k            print card unique key\n");
225         printf("  -l            dump card log\n");
226         printf("  -m            print card mac\n");
227         exit(4);
228 }
229
230 int main(int argc, char *argv[])
231 {
232         int option_index;
233         char c;
234         int cint;
235         char *essid = NULL;
236         char *passwd = NULL;
237         char network_action = 0;
238         static int force = 0;
239         static struct option long_options[] = {
240                 //{"wep", 'x', &passed_wep, 1},
241                 //{"wpa", 'y', &passed_wpa, 1},
242                 {"force", 0, &force, 1},
243                 {"help", 'h', NULL, 1},
244                 {0, 0, 0, 0}
245         };
246
247         if (argc == 1)
248                 usage();
249
250         debug_printf(3, "%s starting...\n", argv[0]);
251
252         debug_printf(3, "about to parse arguments\n");
253         debug_printf(4, "argc: %d\n", argc);
254         debug_printf(4, "argv: %p\n", argv);
255         while ((cint = getopt_long_only(argc, argv, "a:bcd:kflmp:r:st:z",
256                         &long_options[0], &option_index)) != -1) {
257                 c = cint;
258                 debug_printf(3, "argument: '%c' %d optarg: '%s'\n", c, c, optarg);
259                 switch (c) {
260                 case 0:
261                         // was a long argument
262                         break;
263                 case 'a':
264                 case 't':
265                 case 'r':
266                         essid = strdup(optarg);
267                         network_action = c;
268                         break;
269                 case 'b':
270                         reboot_card();
271                         break;
272                 case 'c':
273                         print_configured_nets();
274                         break;
275                 case 'd':
276                         eyefi_debug_level = atoi(optarg);
277                         fprintf(stderr, "set debug level to: %d\n", eyefi_debug_level);
278                         break;
279                 case 'f':
280                         print_card_firmware_info();
281                         break;
282                 case 'k':
283                         print_card_key();
284                         break;
285                 case 'l':
286                         print_log();
287                         break;
288                 case 'm':
289                         print_card_mac();
290                         break;
291                 case 'p':
292                         passwd = strdup(optarg);
293                         break;
294                 case 's':
295                         scan_print_nets();
296                         break;
297                 case 'z': {
298                         extern void testit0(void);
299                         testit0();
300                         break;
301                 }
302                 case 'h':
303                 default:
304                         usage();
305                         break;
306                 }
307         }
308
309         debug_printf(3, "after arguments1 essid: '%s' passwd: '%s'\n", essid, passwd);
310         if (network_action && essid) {
311                 int ret = 0;
312                 init_card();
313                 switch (network_action) {
314                 case 't':
315                         ret = try_connection_to(essid, passwd);
316                         break;
317                 case 'a':
318                         if (!force) {
319                                 ret = try_connection_to(essid, passwd);
320                         } else {
321                                 debug_printf(1, "forced: skipping network test\n");
322                         }
323                         if (ret) {
324                                 printf("Error connecting to network '%s', not adding.\n", essid);
325                                 printf("use --force to override\n");
326                                 break;
327                         }
328                         add_network(essid, passwd);
329                         break;
330                 case 'r':
331                         remove_network(essid);
332                         break;
333                 }
334         }
335
336         free(essid);
337         free(passwd);
338         return 0;
339 }
340
341