8bab624eed258377d80099a265792ff671a43a6f
[metze/wireshark/wip.git] / extcap.c
1 /* extcap.c
2  *
3  * Routines for extcap external capture
4  * Copyright 2013, Mike Ryan <mikeryan@lacklustre.net>
5  *
6  * Wireshark - Network traffic analyzer
7  * By Gerald Combs <gerald@wireshark.org>
8  * Copyright 1998 Gerald Combs
9  *
10  * SPDX-License-Identifier: GPL-2.0-or-later
11  */
12
13 #include <config.h>
14
15 #include <stdio.h>
16 #include <stdlib.h>
17 #include <string.h>
18
19 #ifdef _WIN32
20 #include <windows.h>
21 #include <process.h>
22 #include <time.h>
23 #else
24 /* Include for unlink */
25 #include <unistd.h>
26 #endif
27
28 #include <sys/types.h>
29 #ifdef HAVE_SYS_WAIT_H
30 #include <sys/wait.h>
31 #endif
32
33 #include <glib.h>
34 #include <log.h>
35
36 #include <epan/prefs.h>
37
38 #include "ui/iface_toolbar.h"
39
40 #include <wsutil/file_util.h>
41 #include <wsutil/filesystem.h>
42 #include <wsutil/ws_pipe.h>
43 #include <wsutil/tempfile.h>
44
45 #include "capture_opts.h"
46
47 #include "extcap.h"
48 #include "extcap_parser.h"
49
50 #include "version_info.h"
51
52 #ifdef _WIN32
53 static HANDLE pipe_h = INVALID_HANDLE_VALUE;
54 #endif
55
56 static void extcap_child_watch_cb(GPid pid, gint status, gpointer user_data);
57
58 /* internal container, for all the extcap executables that have been found.
59  * Will be resetted if extcap_clear_interfaces() is being explicitly called
60  * and is being used for printing information about all extcap interfaces found,
61  * as well as storing all sub-interfaces
62  */
63 static GHashTable * _loaded_interfaces = NULL;
64
65 /* Internal container, which maps each ifname to the tool providing it, for faster
66  * lookup. The key and string value are owned by this table.
67  */
68 static GHashTable * _tool_for_ifname = NULL;
69
70 /* internal container, for all the extcap executables that have been found
71  * and that provides a toolbar with controls to be added to a Interface Toolbar
72  */
73 static GHashTable *_toolbars = NULL;
74
75 /* internal container, to map preference names to pointers that hold preference
76  * values. These ensure that preferences can survive extcap if garbage
77  * collection, and does not lead to dangling pointers in the prefs subsystem.
78  */
79 static GHashTable *extcap_prefs_dynamic_vals = NULL;
80
81 typedef struct _extcap_callback_info_t
82 {
83     const gchar * extcap;
84     const gchar * ifname;
85     gchar * output;
86     void * data;
87     gchar ** err_str;
88 } extcap_callback_info_t;
89
90 /* Callback definition for extcap_foreach */
91 typedef gboolean(*extcap_cb_t)(extcap_callback_info_t info_structure);
92
93 static void extcap_load_interface_list(void);
94
95 GHashTable *
96 extcap_loaded_interfaces(void)
97 {
98     if (prefs.capture_no_extcap)
99         return NULL;
100
101     if ( !_loaded_interfaces || g_hash_table_size(_loaded_interfaces) == 0 )
102         extcap_load_interface_list();
103
104     return _loaded_interfaces;
105 }
106
107 void
108 extcap_clear_interfaces(void)
109 {
110     if ( _loaded_interfaces )
111         g_hash_table_destroy(_loaded_interfaces);
112     _loaded_interfaces = NULL;
113
114     if ( _tool_for_ifname )
115         g_hash_table_destroy(_tool_for_ifname);
116     _tool_for_ifname = NULL;
117 }
118
119 guint extcap_count(void)
120 {
121     const char *dirname = get_extcap_dir();
122     GDir *dir;
123     guint count;
124
125     count = 0;
126
127     if ((dir = g_dir_open(dirname, 0, NULL)) != NULL)
128     {
129         GString *extcap_path = NULL;
130         const gchar *file;
131
132         extcap_path = g_string_new("");
133         while ((file = g_dir_read_name(dir)) != NULL)
134         {
135             /* full path to extcap binary */
136             g_string_printf(extcap_path, "%s" G_DIR_SEPARATOR_S "%s", dirname, file);
137             /* treat anything executable as an extcap binary */
138             if (g_file_test(extcap_path->str, G_FILE_TEST_IS_REGULAR) &&
139                 g_file_test(extcap_path->str, G_FILE_TEST_IS_EXECUTABLE))
140             {
141                 count++;
142             }
143         }
144
145         g_dir_close(dir);
146         g_string_free(extcap_path, TRUE);
147     }
148     return count;
149 }
150
151 static gboolean
152 extcap_if_exists(const gchar *ifname)
153 {
154     if (!ifname || !_tool_for_ifname)
155     {
156         return FALSE;
157     }
158
159     if (g_hash_table_lookup(_tool_for_ifname, ifname))
160     {
161         return TRUE;
162     }
163
164     return FALSE;
165 }
166
167 static extcap_interface *
168 extcap_find_interface_for_ifname(const gchar *ifname)
169 {
170     extcap_interface * result = NULL;
171
172     if ( !ifname || ! _tool_for_ifname || ! _loaded_interfaces )
173         return result;
174
175     gchar * extcap_util = (gchar *)g_hash_table_lookup(_tool_for_ifname, ifname);
176     if ( ! extcap_util )
177         return result;
178
179     extcap_info * element = (extcap_info *)g_hash_table_lookup(_loaded_interfaces, extcap_util);
180     if ( ! element )
181         return result;
182
183     GList * walker = element->interfaces;
184     while ( walker && walker->data && ! result )
185     {
186         extcap_interface * interface = (extcap_interface *)walker->data;
187         if ( g_strcmp0(interface->call, ifname) == 0 )
188         {
189             result = interface;
190             break;
191         }
192
193         walker = g_list_next ( walker );
194     }
195
196     return result;
197 }
198
199 static void
200 extcap_free_toolbar_value(iface_toolbar_value *value)
201 {
202     if (!value)
203     {
204         return;
205     }
206
207     g_free(value->value);
208     g_free(value->display);
209     g_free(value);
210 }
211
212 static void
213 extcap_free_toolbar_control(iface_toolbar_control *control)
214 {
215     if (!control)
216     {
217         return;
218     }
219
220     g_free(control->display);
221     g_free(control->validation);
222     g_free(control->tooltip);
223     if (control->ctrl_type == INTERFACE_TYPE_STRING) {
224         g_free(control->default_value.string);
225     }
226     g_list_free_full(control->values, (GDestroyNotify)extcap_free_toolbar_value);
227     g_free(control);
228 }
229
230 static void
231 extcap_free_toolbar(gpointer data)
232 {
233     if (!data)
234     {
235         return;
236     }
237
238     iface_toolbar *toolbar = (iface_toolbar *)data;
239
240     g_free(toolbar->menu_title);
241     g_free(toolbar->help);
242     g_list_free_full(toolbar->ifnames, g_free);
243     g_list_free_full(toolbar->controls, (GDestroyNotify)extcap_free_toolbar_control);
244     g_free(toolbar);
245 }
246
247 static gboolean
248 extcap_if_exists_for_extcap(const gchar *ifname, const gchar *extcap)
249 {
250     extcap_interface *entry = extcap_find_interface_for_ifname(ifname);
251
252     if (entry && strcmp(entry->extcap_path, extcap) == 0)
253     {
254         return TRUE;
255     }
256
257     return FALSE;
258 }
259
260 static gchar *
261 extcap_if_executable(const gchar *ifname)
262 {
263     extcap_interface *interface = extcap_find_interface_for_ifname(ifname);
264     return interface != NULL ? interface->extcap_path : NULL;
265 }
266
267 static void
268 extcap_iface_toolbar_add(const gchar *extcap, iface_toolbar *toolbar_entry)
269 {
270     char *toolname;
271
272     if (!extcap || !toolbar_entry)
273     {
274         return;
275     }
276
277     toolname = g_path_get_basename(extcap);
278
279     if (!g_hash_table_lookup(_toolbars, toolname))
280     {
281         g_hash_table_insert(_toolbars, g_strdup(toolname), toolbar_entry);
282     }
283
284     g_free(toolname);
285 }
286
287 static gchar **
288 extcap_convert_arguments_to_array(GList * arguments)
289 {
290     gchar ** result = NULL;
291     if ( arguments )
292     {
293         GList * walker = g_list_first(arguments);
294         int cnt = 0;
295
296         result = (gchar **) g_malloc0(sizeof(gchar *) * (g_list_length(arguments)));
297
298         while(walker)
299         {
300             result[cnt] = g_strdup((const gchar *)walker->data);
301             walker = g_list_next(walker);
302             cnt++;
303         }
304     }
305     return result;
306 }
307
308 static void extcap_free_array(gchar ** args, int argc)
309 {
310     int cnt = 0;
311
312     for ( cnt = 0; cnt < argc; cnt++ )
313         g_free(args[cnt]);
314     g_free(args);
315 }
316
317 /* Note: args does not need to be NULL-terminated. */
318 static gboolean extcap_foreach(GList * arguments,
319                                       extcap_cb_t cb, extcap_callback_info_t cb_info, GList * fallback_arguments)
320 {
321     GDir *dir;
322     gboolean keep_going;
323     const char *dirname = get_extcap_dir();
324
325     keep_going = TRUE;
326
327     if (arguments && (dir = g_dir_open(dirname, 0, NULL)) != NULL)
328     {
329         GString *extcap_path = NULL;
330         const gchar *file;
331         gchar ** args = extcap_convert_arguments_to_array(arguments);
332         int cnt = g_list_length(arguments);
333
334         extcap_path = g_string_new("");
335         while (keep_going && (file = g_dir_read_name(dir)) != NULL)
336         {
337             gchar *command_output = NULL;
338
339             /* full path to extcap binary */
340             g_string_printf(extcap_path, "%s" G_DIR_SEPARATOR_S "%s", dirname, file);
341             /* treat anything executable as an extcap binary */
342             if (g_file_test(extcap_path->str, G_FILE_TEST_IS_REGULAR) &&
343                 g_file_test(extcap_path->str, G_FILE_TEST_IS_EXECUTABLE))
344             {
345                 if (extcap_if_exists(cb_info.ifname) && !extcap_if_exists_for_extcap(cb_info.ifname, extcap_path->str))
346                 {
347                     continue;
348                 }
349
350                 if (ws_pipe_spawn_sync((gchar *) dirname, extcap_path->str, cnt, args, &command_output))
351                 {
352                     cb_info.output = command_output;
353                     cb_info.extcap = extcap_path->str;
354
355                     keep_going = cb(cb_info);
356                 }
357                 else if ( fallback_arguments )
358                 {
359                     gchar ** fb_args = extcap_convert_arguments_to_array(fallback_arguments);
360
361                     if (ws_pipe_spawn_sync((gchar *) dirname, extcap_path->str, g_list_length(fallback_arguments), fb_args, &command_output))
362                     {
363                         cb_info.output = command_output;
364                         cb_info.extcap = extcap_path->str;
365
366                         keep_going = cb(cb_info);
367                     }
368                 }
369
370                 g_free(command_output);
371             }
372
373         }
374         extcap_free_array(args, cnt);
375
376         g_dir_close(dir);
377         g_string_free(extcap_path, TRUE);
378     }
379
380     return keep_going;
381 }
382
383 static void extcap_free_dlt(gpointer d, gpointer user_data _U_)
384 {
385     if (d == NULL)
386     {
387         return;
388     }
389
390     g_free(((extcap_dlt *)d)->name);
391     g_free(((extcap_dlt *)d)->display);
392     g_free(d);
393 }
394
395 static void extcap_free_dlts(GList *dlts)
396 {
397     g_list_foreach(dlts, extcap_free_dlt, NULL);
398     g_list_free(dlts);
399 }
400
401 static gboolean cb_dlt(extcap_callback_info_t cb_info)
402 {
403     GList *dlts = NULL, *temp = NULL;
404
405     if_capabilities_t *caps;
406     GList *linktype_list = NULL;
407     data_link_info_t *data_link_info;
408     extcap_dlt *dlt_item;
409
410     dlts = extcap_parse_dlts(cb_info.output);
411     temp = dlts;
412
413     g_log(LOG_DOMAIN_CAPTURE, G_LOG_LEVEL_DEBUG, "Extcap pipe %s ", cb_info.extcap);
414
415     /*
416      * Allocate the interface capabilities structure.
417      */
418     caps = (if_capabilities_t *) g_malloc(sizeof * caps);
419     caps->can_set_rfmon = FALSE;
420     caps->timestamp_types = NULL;
421
422     while (dlts)
423     {
424         dlt_item = (extcap_dlt *)dlts->data;
425         if (dlt_item)
426         {
427             g_log(LOG_DOMAIN_CAPTURE, G_LOG_LEVEL_DEBUG,
428                   "  DLT %d name=\"%s\" display=\"%s\" ", dlt_item->number,
429                   dlt_item->name, dlt_item->display);
430
431             data_link_info = g_new(data_link_info_t, 1);
432             data_link_info->dlt = dlt_item->number;
433             data_link_info->name = g_strdup(dlt_item->name);
434             data_link_info->description = g_strdup(dlt_item->display);
435             linktype_list = g_list_append(linktype_list, data_link_info);
436         }
437
438         dlts = g_list_next(dlts);
439     }
440
441     /* Check to see if we built a list */
442     if (linktype_list != NULL && cb_info.data != NULL)
443     {
444         caps->data_link_types = linktype_list;
445         *(if_capabilities_t **) cb_info.data = caps;
446     }
447     else
448     {
449         if (cb_info.err_str)
450         {
451             g_log(LOG_DOMAIN_CAPTURE, G_LOG_LEVEL_DEBUG, "  returned no DLTs");
452             *(cb_info.err_str) = g_strdup("Extcap returned no DLTs");
453         }
454         g_free(caps);
455     }
456
457     extcap_free_dlts(temp);
458
459     return FALSE;
460 }
461
462 if_capabilities_t *
463 extcap_get_if_dlts(const gchar *ifname, char **err_str)
464 {
465     GList * arguments = NULL;
466     if_capabilities_t *caps = NULL;
467
468     if (err_str != NULL)
469     {
470         *err_str = NULL;
471     }
472
473     if (extcap_if_exists(ifname))
474     {
475         arguments = g_list_append(arguments, g_strdup(EXTCAP_ARGUMENT_LIST_DLTS));
476         arguments = g_list_append(arguments, g_strdup(EXTCAP_ARGUMENT_INTERFACE));
477         arguments = g_list_append(arguments, g_strdup(ifname));
478
479         extcap_callback_info_t cb_info;
480         cb_info.data = &caps;
481         cb_info.err_str = err_str;
482         cb_info.ifname = ifname;
483
484         extcap_foreach(arguments, cb_dlt, cb_info, NULL);
485
486         g_list_free_full(arguments, g_free);
487     }
488
489     return caps;
490 }
491
492 static void extcap_free_interface(gpointer i)
493 {
494
495     extcap_interface *interface = (extcap_interface *)i;
496
497     if (i == NULL)
498     {
499         return;
500     }
501
502     g_free(interface->call);
503     g_free(interface->display);
504     g_free(interface->version);
505     g_free(interface->help);
506     g_free(interface->extcap_path);
507     g_free(interface);
508 }
509
510 static void extcap_free_interfaces(GList *interfaces)
511 {
512     if (interfaces == NULL)
513     {
514         return;
515     }
516
517     g_list_free_full(interfaces, extcap_free_interface);
518 }
519
520 static gint
521 if_info_compare(gconstpointer a, gconstpointer b)
522 {
523     gint comp = 0;
524     const if_info_t *if_a = (const if_info_t *)a;
525     const if_info_t *if_b = (const if_info_t *)b;
526
527     if ((comp = g_strcmp0(if_a->name, if_b->name)) == 0)
528     {
529         return g_strcmp0(if_a->friendly_name, if_b->friendly_name);
530     }
531
532     return comp;
533 }
534
535 gchar *
536 extcap_get_help_for_ifname(const char *ifname)
537 {
538     extcap_interface *interface = extcap_find_interface_for_ifname(ifname);
539     return interface != NULL ? interface->help : NULL;
540 }
541
542 GList *
543 append_extcap_interface_list(GList *list, char **err_str _U_)
544 {
545     GList *interface_list = NULL;
546     extcap_interface *data = NULL;
547     GList *ifutilkeys_head = NULL, *ifutilkeys = NULL;
548
549     if (prefs.capture_no_extcap)
550         return list;
551
552     /* Update the extcap interfaces and get a list of their if_infos */
553     if ( !_loaded_interfaces || g_hash_table_size(_loaded_interfaces) == 0 )
554         extcap_load_interface_list();
555
556     ifutilkeys_head = g_hash_table_get_keys(_loaded_interfaces);
557     ifutilkeys = ifutilkeys_head;
558     while ( ifutilkeys && ifutilkeys->data )
559     {
560         extcap_info * extinfo =
561                 (extcap_info *) g_hash_table_lookup(_loaded_interfaces, (gchar *)ifutilkeys->data);
562         GList * walker = extinfo->interfaces;
563         while ( walker && walker->data )
564         {
565             interface_list = g_list_append(interface_list, walker->data);
566             walker = g_list_next(walker);
567         }
568
569         ifutilkeys = g_list_next(ifutilkeys);
570     }
571     g_list_free(ifutilkeys_head);
572
573     /* Sort that list */
574     interface_list = g_list_sort(interface_list, if_info_compare);
575
576     /* Append the interfaces in that list to the list we're handed. */
577     while (interface_list != NULL)
578     {
579         GList *entry = g_list_first(interface_list);
580         data = (extcap_interface *)entry->data;
581         interface_list = g_list_delete_link(interface_list, entry);
582
583         if_info_t * if_info = g_new0(if_info_t, 1);
584         if_info->name = g_strdup(data->call);
585         if_info->friendly_name = g_strdup(data->display);
586
587         if_info->type = IF_EXTCAP;
588
589         if_info->extcap = g_strdup(data->extcap_path);
590
591         list = g_list_append(list, if_info);
592     }
593
594     return list;
595 }
596
597 static void
598 extcap_register_preferences_callback(gpointer key, gpointer value _U_, gpointer user_data _U_)
599 {
600     GList *arguments;
601
602     arguments = extcap_get_if_configuration((gchar *)key);
603     /* Memory for prefs are external to an interface, they are part of
604      * extcap core, so the parsed arguments can be freed. */
605     extcap_free_if_configuration(arguments, TRUE);
606 }
607
608 void extcap_register_preferences(void)
609 {
610     if (prefs.capture_no_extcap)
611         return;
612
613     module_t *dev_module = prefs_find_module("extcap");
614
615     if (!dev_module)
616     {
617         return;
618     }
619
620     if ( !_loaded_interfaces || g_hash_table_size(_loaded_interfaces) == 0 )
621         extcap_load_interface_list();
622
623
624     g_hash_table_foreach(_tool_for_ifname, extcap_register_preferences_callback, NULL);
625 }
626
627 /**
628  * Releases the dynamic preference value pointers. Must not be called before
629  * prefs_cleanup since these pointers could still be in use.
630  */
631 void extcap_cleanup(void)
632 {
633     if (extcap_prefs_dynamic_vals)
634         g_hash_table_destroy(extcap_prefs_dynamic_vals);
635
636     if (_loaded_interfaces)
637         g_hash_table_destroy(_loaded_interfaces);
638
639     if (_tool_for_ifname)
640         g_hash_table_destroy(_tool_for_ifname);
641 }
642
643 /**
644  * Obtains a pointer which can store a value for the given preference name.
645  * The preference name that can be passed to the prefs API is stored into
646  * 'prefs_name'.
647  *
648  * Extcap interfaces (and their preferences) are dynamic, they can be created
649  * and destroyed at will. Thus their data structures are insufficient to pass to
650  * the preferences APIs which require pointers which are valid until the
651  * preferences are removed (at exit).
652  */
653 static gchar **extcap_prefs_dynamic_valptr(const char *name, char **pref_name)
654 {
655     gchar **valp;
656     if (!extcap_prefs_dynamic_vals)
657     {
658         /* Initialize table only as needed, most preferences are not dynamic */
659         extcap_prefs_dynamic_vals = g_hash_table_new_full(g_str_hash, g_str_equal,
660                                     g_free, g_free);
661     }
662     if (!g_hash_table_lookup_extended(extcap_prefs_dynamic_vals, name,
663                                       (gpointer *)pref_name, (gpointer *)&valp))
664     {
665         /* New dynamic pref, allocate, initialize and store. */
666         valp = g_new0(gchar *, 1);
667         *pref_name = g_strdup(name);
668         g_hash_table_insert(extcap_prefs_dynamic_vals, *pref_name, valp);
669     }
670     return valp;
671 }
672
673 void extcap_free_if_configuration(GList *list, gboolean free_args)
674 {
675     GList *elem, *sl;
676
677     for (elem = g_list_first(list); elem; elem = elem->next)
678     {
679         if (elem->data != NULL)
680         {
681             sl = g_list_first((GList *)elem->data);
682             if (free_args)
683             {
684                 extcap_free_arg_list(sl);
685             }
686             else
687             {
688                 g_list_free(sl);
689             }
690         }
691     }
692     g_list_free(list);
693 }
694
695 struct preference *
696 extcap_pref_for_argument(const gchar *ifname, struct _extcap_arg *arg)
697 {
698     struct preference *pref = NULL;
699
700     GRegex *regex_name = g_regex_new("[-]+", (GRegexCompileFlags) 0, (GRegexMatchFlags) 0, NULL);
701     GRegex *regex_ifname = g_regex_new("(?![a-zA-Z0-9_]).", (GRegexCompileFlags) 0, (GRegexMatchFlags) 0, NULL);
702     if (regex_name && regex_ifname)
703     {
704         if (prefs_find_module("extcap"))
705         {
706             gchar *pref_name = g_regex_replace(regex_name, arg->call, strlen(arg->call), 0, "", (GRegexMatchFlags) 0, NULL);
707             gchar *ifname_underscore = g_regex_replace(regex_ifname, ifname, strlen(ifname), 0, "_", (GRegexMatchFlags) 0, NULL);
708             gchar *ifname_lowercase = g_ascii_strdown(ifname_underscore, -1);
709             gchar *pref_ifname = g_strconcat(ifname_lowercase, ".", pref_name, NULL);
710
711             pref = prefs_find_preference(prefs_find_module("extcap"), pref_ifname);
712
713             g_free(pref_name);
714             g_free(ifname_underscore);
715             g_free(ifname_lowercase);
716             g_free(pref_ifname);
717         }
718     }
719     if (regex_name)
720     {
721         g_regex_unref(regex_name);
722     }
723     if (regex_ifname)
724     {
725         g_regex_unref(regex_ifname);
726     }
727
728     return pref;
729 }
730
731 static gboolean cb_preference(extcap_callback_info_t cb_info)
732 {
733     GList *arguments = NULL;
734     GList **il = (GList **) cb_info.data;
735     module_t *dev_module = NULL;
736
737     arguments = extcap_parse_args(cb_info.output);
738
739     dev_module = prefs_find_module("extcap");
740
741     if (dev_module)
742     {
743         GList *walker = arguments;
744
745         GRegex *regex_name = g_regex_new("[-]+", (GRegexCompileFlags) 0, (GRegexMatchFlags) 0, NULL);
746         GRegex *regex_ifname = g_regex_new("(?![a-zA-Z0-9_]).", (GRegexCompileFlags) 0, (GRegexMatchFlags) 0, NULL);
747         if (regex_name && regex_ifname)
748         {
749             while (walker != NULL)
750             {
751                 extcap_arg *arg = (extcap_arg *)walker->data;
752                 arg->device_name = g_strdup(cb_info.ifname);
753
754                 if (arg->save)
755                 {
756                     struct preference *pref = NULL;
757
758                     gchar *pref_name = g_regex_replace(regex_name, arg->call, strlen(arg->call), 0, "", (GRegexMatchFlags) 0, NULL);
759                     gchar *ifname_underscore = g_regex_replace(regex_ifname, cb_info.ifname, strlen(cb_info.ifname), 0, "_", (GRegexMatchFlags) 0, NULL);
760                     gchar *ifname_lowercase = g_ascii_strdown(ifname_underscore, -1);
761                     gchar *pref_ifname = g_strconcat(ifname_lowercase, ".", pref_name, NULL);
762
763                     if ((pref = prefs_find_preference(dev_module, pref_ifname)) == NULL)
764                     {
765                         char *pref_name_for_prefs;
766                         char *pref_title = wmem_strdup(wmem_epan_scope(), arg->display);
767
768                         arg->pref_valptr = extcap_prefs_dynamic_valptr(pref_ifname, &pref_name_for_prefs);
769                         /* Set an initial value if any (the string will be copied at registration) */
770                         if (arg->default_complex)
771                         {
772                             *arg->pref_valptr = arg->default_complex->_val;
773                         }
774
775                         prefs_register_string_preference(dev_module, pref_name_for_prefs,
776                                                          pref_title, pref_title, (const char **)arg->pref_valptr);
777                     }
778                     else
779                     {
780                         /* Been here before, restore stored value */
781                         if (arg->pref_valptr == NULL)
782                         {
783                             arg->pref_valptr = (gchar**)g_hash_table_lookup(extcap_prefs_dynamic_vals, pref_ifname);
784                         }
785                     }
786
787                     g_free(pref_name);
788                     g_free(ifname_underscore);
789                     g_free(ifname_lowercase);
790                     g_free(pref_ifname);
791                 }
792
793                 walker = g_list_next(walker);
794             }
795         }
796         if (regex_name)
797         {
798             g_regex_unref(regex_name);
799         }
800         if (regex_ifname)
801         {
802             g_regex_unref(regex_ifname);
803         }
804     }
805
806     *il = g_list_append(*il, arguments);
807
808     /* By returning false, extcap_foreach will break on first found */
809     return TRUE;
810 }
811
812 GList *
813 extcap_get_if_configuration(const char *ifname)
814 {
815     GList * arguments = NULL;
816     GList *ret = NULL;
817     gchar **err_str = NULL;
818
819     if (extcap_if_exists(ifname))
820     {
821         g_log(LOG_DOMAIN_CAPTURE, G_LOG_LEVEL_DEBUG, "Extcap path %s",
822               get_extcap_dir());
823
824         arguments = g_list_append(arguments, g_strdup(EXTCAP_ARGUMENT_CONFIG));
825         arguments = g_list_append(arguments, g_strdup(EXTCAP_ARGUMENT_INTERFACE));
826         arguments = g_list_append(arguments, g_strdup(ifname));
827
828         extcap_callback_info_t cb_info;
829         cb_info.data = &ret;
830         cb_info.err_str = err_str;
831         cb_info.ifname = ifname;
832
833         extcap_foreach(arguments, cb_preference, cb_info, NULL);
834
835         g_list_free_full(arguments, g_free);
836     }
837
838     return ret;
839 }
840
841 static gboolean cb_reload_preference(extcap_callback_info_t cb_info)
842 {
843     GList *arguments = NULL, * walker = NULL;
844     GList **il = (GList **) cb_info.data;
845
846     arguments = extcap_parse_values(cb_info.output);
847
848     walker = g_list_first((GList *)(arguments));
849     while (walker != NULL)
850     {
851         extcap_value * val = (extcap_value *)walker->data;
852         *il = g_list_append(*il, val);
853         walker = g_list_next(walker);
854     }
855     g_list_free(arguments);
856
857     /* By returning false, extcap_foreach will break on first found */
858     return FALSE;
859 }
860
861 GList *
862 extcap_get_if_configuration_values(const char * ifname, const char * argname, GHashTable *arguments)
863 {
864     GList * args = NULL;
865     GList *ret = NULL;
866     gchar **err_str = NULL;
867
868     if (extcap_if_exists(ifname))
869     {
870         g_log(LOG_DOMAIN_CAPTURE, G_LOG_LEVEL_DEBUG, "Extcap path %s",
871               get_extcap_dir());
872
873         args = g_list_append(args, g_strdup(EXTCAP_ARGUMENT_CONFIG));
874         args = g_list_append(args, g_strdup(EXTCAP_ARGUMENT_INTERFACE));
875         args = g_list_append(args, g_strdup(ifname));
876         args = g_list_append(args, g_strdup(EXTCAP_ARGUMENT_RELOAD_OPTION));
877         args = g_list_append(args, g_strdup(argname));
878
879         if ( arguments )
880         {
881             GList * keys = g_hash_table_get_keys(arguments);
882             while ( keys )
883             {
884                 const gchar * key_data = (const gchar *)keys->data;
885                 args = g_list_append(args, g_strdup(key_data));
886                 args = g_list_append(args, g_strdup((const gchar *)g_hash_table_lookup(arguments, key_data)));
887                 keys = g_list_next(keys);
888             }
889         }
890
891         extcap_callback_info_t cb_info;
892         cb_info.data = &ret;
893         cb_info.err_str = err_str;
894         cb_info.ifname = ifname;
895
896         extcap_foreach(args, cb_reload_preference, cb_info, NULL);
897
898         g_list_free_full(args, g_free);
899     }
900
901     return ret;
902 }
903
904 /**
905  * If is_required is FALSE: returns TRUE if the extcap interface has
906  * configurable options.
907  * If is_required is TRUE: returns TRUE when the extcap interface has
908  * configurable options that required modification. (For example, when an
909  * argument is required but empty.)
910  */
911 gboolean
912 extcap_has_configuration(const char *ifname, gboolean is_required)
913 {
914     GList *arguments = 0;
915     GList *walker = 0, * item = 0;
916
917     gboolean found = FALSE;
918
919     arguments = extcap_get_if_configuration((const char *)(ifname));
920     walker = g_list_first(arguments);
921
922     while (walker != NULL && !found)
923     {
924         item = g_list_first((GList *)(walker->data));
925         while (item != NULL && !found)
926         {
927             if ((extcap_arg *)(item->data) != NULL)
928             {
929                 extcap_arg *arg = (extcap_arg *)(item->data);
930                 /* Should required options be present, or any kind of options */
931                 if (!is_required)
932                 {
933                     found = TRUE;
934                 }
935                 else if (arg->is_required)
936                 {
937                     const gchar *stored = NULL;
938                     const gchar *defval = NULL;
939
940                     if (arg->pref_valptr != NULL)
941                     {
942                         stored = *arg->pref_valptr;
943                     }
944
945                     if (arg->default_complex != NULL && arg->default_complex->_val != NULL)
946                     {
947                         defval = arg->default_complex->_val;
948                     }
949
950                     if (arg->is_required)
951                     {
952                         /* If stored and defval is identical and the argument is required,
953                          * configuration is needed */
954                         if (defval && stored && g_strcmp0(stored, defval) == 0)
955                         {
956                             found = TRUE;
957                         }
958                         else if (!defval && (!stored || !*stored))
959                         {
960                             found = TRUE;
961                         }
962                     }
963
964                     if (arg->arg_type == EXTCAP_ARG_FILESELECT)
965                     {
966                         if (arg->fileexists && !(file_exists(defval) || file_exists(stored)))
967                         {
968                             found = TRUE;
969                         }
970                     }
971                 }
972             }
973
974             item = item->next;
975         }
976         walker = walker->next;
977     }
978     extcap_free_if_configuration(arguments, TRUE);
979
980     return found;
981 }
982
983 static gboolean cb_verify_filter(extcap_callback_info_t cb_info)
984 {
985     extcap_filter_status *status = (extcap_filter_status *)cb_info.data;
986     size_t output_size, i;
987
988     output_size = strlen(cb_info.output);
989     if (output_size == 0) {
990         *status = EXTCAP_FILTER_VALID;
991     } else {
992         *status = EXTCAP_FILTER_INVALID;
993         for (i = 0; i < output_size; i++) {
994             if (cb_info.output[i] == '\n' || cb_info.output[i] == '\r') {
995                 cb_info.output[i] = '\0';
996                 break;
997             }
998         }
999         *cb_info.err_str = g_strdup(cb_info.output);
1000     }
1001
1002     return TRUE;
1003 }
1004
1005 extcap_filter_status
1006 extcap_verify_capture_filter(const char *ifname, const char *filter, gchar **err_str)
1007 {
1008     GList * arguments = NULL;
1009     extcap_filter_status status = EXTCAP_FILTER_UNKNOWN;
1010
1011     if (extcap_if_exists(ifname))
1012     {
1013         g_log(LOG_DOMAIN_CAPTURE, G_LOG_LEVEL_DEBUG, "Extcap path %s",
1014               get_extcap_dir());
1015
1016         arguments = g_list_append(arguments, g_strdup(EXTCAP_ARGUMENT_CAPTURE_FILTER));
1017         arguments = g_list_append(arguments, g_strdup(filter));
1018         arguments = g_list_append(arguments, g_strdup(EXTCAP_ARGUMENT_INTERFACE));
1019         arguments = g_list_append(arguments, g_strdup(ifname));
1020
1021         extcap_callback_info_t cb_info;
1022         cb_info.data = &status;
1023         cb_info.err_str = err_str;
1024         cb_info.ifname = ifname;
1025
1026         extcap_foreach(arguments, cb_verify_filter, cb_info, NULL);
1027         g_list_free_full(arguments, g_free);
1028     }
1029
1030     return status;
1031 }
1032
1033 gboolean
1034 extcap_has_toolbar(const char *ifname)
1035 {
1036     if (!iface_toolbar_use())
1037     {
1038         return FALSE;
1039     }
1040
1041     GList *toolbar_list = g_hash_table_get_values (_toolbars);
1042     for (GList *walker = toolbar_list; walker; walker = walker->next)
1043     {
1044         iface_toolbar *toolbar = (iface_toolbar *) walker->data;
1045         if (g_list_find_custom(toolbar->ifnames, ifname, (GCompareFunc) strcmp))
1046         {
1047             return TRUE;
1048         }
1049     }
1050
1051     return FALSE;
1052 }
1053
1054 void extcap_if_cleanup(capture_options *capture_opts, gchar **errormsg)
1055 {
1056     interface_options *interface_opts;
1057     ws_pipe_t *pipedata;
1058     guint icnt = 0;
1059     gboolean overwrite_exitcode;
1060     gchar *buffer;
1061 #define STDERR_BUFFER_SIZE 1024
1062
1063     for (icnt = 0; icnt < capture_opts->ifaces->len; icnt++)
1064     {
1065         interface_opts = &g_array_index(capture_opts->ifaces, interface_options,
1066                                        icnt);
1067
1068         /* skip native interfaces */
1069         if (interface_opts->if_type != IF_EXTCAP)
1070         {
1071             continue;
1072         }
1073
1074         overwrite_exitcode = FALSE;
1075
1076         g_log(LOG_DOMAIN_CAPTURE, G_LOG_LEVEL_DEBUG,
1077               "Extcap [%s] - Cleaning up fifo: %s; PID: %d", interface_opts->name,
1078               interface_opts->extcap_fifo, interface_opts->extcap_pid);
1079 #ifdef _WIN32
1080         if (interface_opts->extcap_pipe_h != INVALID_HANDLE_VALUE)
1081         {
1082             g_log(LOG_DOMAIN_CAPTURE, G_LOG_LEVEL_DEBUG,
1083                   "Extcap [%s] - Closing pipe", interface_opts->name);
1084             FlushFileBuffers(interface_opts->extcap_pipe_h);
1085             DisconnectNamedPipe(interface_opts->extcap_pipe_h);
1086             CloseHandle(interface_opts->extcap_pipe_h);
1087             interface_opts->extcap_pipe_h = INVALID_HANDLE_VALUE;
1088         }
1089         if (interface_opts->extcap_control_in_h != INVALID_HANDLE_VALUE)
1090         {
1091             g_log(LOG_DOMAIN_CAPTURE, G_LOG_LEVEL_DEBUG,
1092                   "Extcap [%s] - Closing control_in pipe", interface_opts->name);
1093             FlushFileBuffers(interface_opts->extcap_control_in_h);
1094             DisconnectNamedPipe(interface_opts->extcap_control_in_h);
1095             CloseHandle(interface_opts->extcap_control_in_h);
1096             interface_opts->extcap_control_in_h = INVALID_HANDLE_VALUE;
1097         }
1098         if (interface_opts->extcap_control_out_h != INVALID_HANDLE_VALUE)
1099         {
1100             g_log(LOG_DOMAIN_CAPTURE, G_LOG_LEVEL_DEBUG,
1101                   "Extcap [%s] - Closing control_out pipe", interface_opts->name);
1102             FlushFileBuffers(interface_opts->extcap_control_out_h);
1103             DisconnectNamedPipe(interface_opts->extcap_control_out_h);
1104             CloseHandle(interface_opts->extcap_control_out_h);
1105             interface_opts->extcap_control_out_h = INVALID_HANDLE_VALUE;
1106         }
1107 #else
1108         if (interface_opts->extcap_fifo != NULL && file_exists(interface_opts->extcap_fifo))
1109         {
1110             /* the fifo will not be freed here, but with the other capture_opts in capture_sync */
1111             ws_unlink(interface_opts->extcap_fifo);
1112             interface_opts->extcap_fifo = NULL;
1113         }
1114         if (interface_opts->extcap_control_in && file_exists(interface_opts->extcap_control_in))
1115         {
1116             ws_unlink(interface_opts->extcap_control_in);
1117             interface_opts->extcap_control_in = NULL;
1118         }
1119         if (interface_opts->extcap_control_out && file_exists(interface_opts->extcap_control_out))
1120         {
1121             ws_unlink(interface_opts->extcap_control_out);
1122             interface_opts->extcap_control_out = NULL;
1123         }
1124 #endif
1125         /* Maybe the client closed and removed fifo, but ws should check if
1126          * pid should be closed */
1127         g_log(LOG_DOMAIN_CAPTURE, G_LOG_LEVEL_DEBUG,
1128               "Extcap [%s] - Closing spawned PID: %d", interface_opts->name,
1129               interface_opts->extcap_pid);
1130
1131         pipedata = (ws_pipe_t *) interface_opts->extcap_pipedata;
1132         if (pipedata)
1133         {
1134             if (pipedata->stderr_fd > 0)
1135             {
1136                 buffer = (gchar *)g_malloc0(STDERR_BUFFER_SIZE + 1);
1137                 ws_read_string_from_pipe(ws_get_pipe_handle(pipedata->stderr_fd), buffer, STDERR_BUFFER_SIZE + 1);
1138                 if (strlen(buffer) > 0)
1139                 {
1140                     pipedata->stderr_msg = g_strdup(buffer);
1141                     pipedata->exitcode = 1;
1142                 }
1143                 g_free(buffer);
1144             }
1145
1146 #ifndef _WIN32
1147             /* Final child watch may not have been called */
1148             if (interface_opts->extcap_child_watch > 0)
1149             {
1150                 extcap_child_watch_cb(pipedata->pid, 0, capture_opts);
1151                 /* it will have changed in extcap_child_watch_cb */
1152                 interface_opts = &g_array_index(capture_opts->ifaces, interface_options,
1153                                                icnt);
1154             }
1155 #endif
1156
1157             if (pipedata->stderr_msg != NULL)
1158             {
1159                 overwrite_exitcode = TRUE;
1160             }
1161
1162             if (overwrite_exitcode || pipedata->exitcode != 0)
1163             {
1164                 if (pipedata->stderr_msg != NULL)
1165                 {
1166                     if (*errormsg == NULL)
1167                     {
1168                         *errormsg = g_strdup_printf("Error by extcap pipe: %s", pipedata->stderr_msg);
1169                     }
1170                     else
1171                     {
1172                         gchar *temp = g_strconcat(*errormsg, "\nError by extcap pipe: " , pipedata->stderr_msg, NULL);
1173                         g_free(*errormsg);
1174                         *errormsg = temp;
1175                     }
1176                     g_free(pipedata->stderr_msg);
1177                 }
1178
1179                 pipedata->stderr_msg = NULL;
1180                 pipedata->exitcode = 0;
1181             }
1182         }
1183
1184         if (interface_opts->extcap_child_watch > 0)
1185         {
1186             g_source_remove(interface_opts->extcap_child_watch);
1187             interface_opts->extcap_child_watch = 0;
1188         }
1189
1190         if (pipedata) {
1191             if (pipedata->stdout_fd > 0)
1192             {
1193                 ws_close(pipedata->stdout_fd);
1194             }
1195
1196             if (pipedata->stderr_fd > 0)
1197             {
1198                 ws_close(pipedata->stderr_fd);
1199             }
1200
1201             if (interface_opts->extcap_pid != WS_INVALID_PID)
1202             {
1203                 ws_pipe_close(pipedata);
1204                 interface_opts->extcap_pid = WS_INVALID_PID;
1205
1206                 g_free(pipedata);
1207                 interface_opts->extcap_pipedata = NULL;
1208             }
1209         }
1210     }
1211 }
1212
1213 static gboolean
1214 extcap_add_arg_and_remove_cb(gpointer key, gpointer value, gpointer data)
1215 {
1216     GPtrArray *args = (GPtrArray *)data;
1217
1218     if (key != NULL)
1219     {
1220         g_ptr_array_add(args, g_strdup((const gchar *)key));
1221
1222         if (value != NULL)
1223         {
1224             g_ptr_array_add(args, g_strdup((const gchar *)value));
1225         }
1226
1227         return TRUE;
1228     }
1229
1230     return FALSE;
1231 }
1232
1233 void extcap_child_watch_cb(GPid pid, gint status, gpointer user_data)
1234 {
1235     guint i;
1236     interface_options *interface_opts;
1237     ws_pipe_t *pipedata = NULL;
1238     capture_options *capture_opts = (capture_options *)(user_data);
1239
1240     if (capture_opts == NULL || capture_opts->ifaces == NULL || capture_opts->ifaces->len == 0)
1241     {
1242         return;
1243     }
1244
1245     /* Close handle to child process. */
1246     g_spawn_close_pid(pid);
1247
1248     /* Update extcap_pid in interface options structure. */
1249     for (i = 0; i < capture_opts->ifaces->len; i++)
1250     {
1251         interface_opts = &g_array_index(capture_opts->ifaces, interface_options, i);
1252         if (interface_opts->extcap_pid == pid)
1253         {
1254             pipedata = (ws_pipe_t *)interface_opts->extcap_pipedata;
1255             if (pipedata != NULL)
1256             {
1257                 interface_opts->extcap_pid = WS_INVALID_PID;
1258                 pipedata->exitcode = 0;
1259 #ifndef _WIN32
1260                 if (WIFEXITED(status))
1261                 {
1262                     if (WEXITSTATUS(status) != 0)
1263                     {
1264                         pipedata->exitcode = WEXITSTATUS(status);
1265                     }
1266                 }
1267                 else
1268                 {
1269                     pipedata->exitcode = G_SPAWN_ERROR_FAILED;
1270                 }
1271 #else
1272                 if (status != 0)
1273                 {
1274                     pipedata->exitcode = status;
1275                 }
1276 #endif
1277                 if (status == 0 && pipedata->stderr_msg != NULL)
1278                 {
1279                     pipedata->exitcode = 1;
1280                 }
1281             }
1282             g_source_remove(interface_opts->extcap_child_watch);
1283             interface_opts->extcap_child_watch = 0;
1284             break;
1285         }
1286     }
1287 }
1288
1289 static
1290 GPtrArray *extcap_prepare_arguments(interface_options *interface_opts)
1291 {
1292     GPtrArray *result = NULL;
1293
1294     if (interface_opts->if_type == IF_EXTCAP)
1295     {
1296         result = g_ptr_array_new();
1297
1298 #define add_arg(X) g_ptr_array_add(result, g_strdup(X))
1299
1300         add_arg(interface_opts->extcap);
1301         add_arg(EXTCAP_ARGUMENT_RUN_CAPTURE);
1302         add_arg(EXTCAP_ARGUMENT_INTERFACE);
1303         add_arg(interface_opts->name);
1304         if (interface_opts->cfilter && strlen(interface_opts->cfilter) > 0)
1305         {
1306             add_arg(EXTCAP_ARGUMENT_CAPTURE_FILTER);
1307             add_arg(interface_opts->cfilter);
1308         }
1309         add_arg(EXTCAP_ARGUMENT_RUN_PIPE);
1310         add_arg(interface_opts->extcap_fifo);
1311         if (interface_opts->extcap_control_in)
1312         {
1313             add_arg(EXTCAP_ARGUMENT_CONTROL_OUT);
1314             add_arg(interface_opts->extcap_control_in);
1315         }
1316         if (interface_opts->extcap_control_out)
1317         {
1318             add_arg(EXTCAP_ARGUMENT_CONTROL_IN);
1319             add_arg(interface_opts->extcap_control_out);
1320         }
1321         if (interface_opts->extcap_args == NULL || g_hash_table_size(interface_opts->extcap_args) == 0)
1322         {
1323             /* User did not perform interface configuration.
1324              *
1325              * Check if there are any boolean flags that are set by default
1326              * and hence their argument should be added.
1327              */
1328             GList *arglist;
1329             GList *elem;
1330
1331             arglist = extcap_get_if_configuration(interface_opts->name);
1332             for (elem = g_list_first(arglist); elem; elem = elem->next)
1333             {
1334                 GList *arg_list;
1335                 extcap_arg *arg_iter;
1336
1337                 if (elem->data == NULL)
1338                 {
1339                     continue;
1340                 }
1341
1342                 arg_list = g_list_first((GList *)elem->data);
1343                 while (arg_list != NULL)
1344                 {
1345                     const gchar *stored = NULL;
1346                     /* In case of boolflags only first element in arg_list is relevant. */
1347                     arg_iter = (extcap_arg *)(arg_list->data);
1348                     if (arg_iter->pref_valptr != NULL)
1349                     {
1350                         stored = *arg_iter->pref_valptr;
1351                     }
1352
1353                     if (arg_iter->arg_type == EXTCAP_ARG_BOOLFLAG)
1354                     {
1355                         if (extcap_complex_get_bool(arg_iter->default_complex))
1356                         {
1357                             add_arg(arg_iter->call);
1358                         }
1359                         else if (g_strcmp0(stored, "true") == 0)
1360                         {
1361                             add_arg(arg_iter->call);
1362                         }
1363                     }
1364                     else
1365                     {
1366                         if (stored && strlen(stored) > 0) {
1367                             add_arg(arg_iter->call);
1368                             add_arg(stored);
1369                         }
1370                     }
1371
1372                     arg_list = arg_list->next;
1373                 }
1374             }
1375
1376             extcap_free_if_configuration(arglist, TRUE);
1377         }
1378         else
1379         {
1380             g_hash_table_foreach_remove(interface_opts->extcap_args, extcap_add_arg_and_remove_cb, result);
1381         }
1382         add_arg(NULL);
1383 #undef add_arg
1384
1385     }
1386
1387     return result;
1388 }
1389
1390 static void ptr_array_free(gpointer data, gpointer user_data _U_)
1391 {
1392     g_free(data);
1393 }
1394
1395 /* call mkfifo for each extcap,
1396  * returns FALSE if there's an error creating a FIFO */
1397 gboolean
1398 extcap_init_interfaces(capture_options *capture_opts)
1399 {
1400     guint i;
1401     interface_options *interface_opts;
1402     ws_pipe_t *pipedata;
1403
1404     for (i = 0; i < capture_opts->ifaces->len; i++)
1405     {
1406         GPtrArray *args = NULL;
1407         GPid pid = WS_INVALID_PID;
1408
1409         interface_opts = &g_array_index(capture_opts->ifaces, interface_options, i);
1410
1411         /* skip native interfaces */
1412         if (interface_opts->if_type != IF_EXTCAP)
1413         {
1414             continue;
1415         }
1416
1417         /* create control pipes if having toolbar */
1418         if (extcap_has_toolbar(interface_opts->name))
1419         {
1420             extcap_create_pipe(interface_opts->name, &interface_opts->extcap_control_in,
1421                                EXTCAP_CONTROL_IN_PREFIX);
1422 #ifdef _WIN32
1423             interface_opts->extcap_control_in_h = pipe_h;
1424 #endif
1425             extcap_create_pipe(interface_opts->name, &interface_opts->extcap_control_out,
1426                                EXTCAP_CONTROL_OUT_PREFIX);
1427 #ifdef _WIN32
1428             interface_opts->extcap_control_out_h = pipe_h;
1429 #endif
1430         }
1431
1432         /* create pipe for fifo */
1433         if (!extcap_create_pipe(interface_opts->name, &interface_opts->extcap_fifo,
1434                                 EXTCAP_PIPE_PREFIX))
1435         {
1436             return FALSE;
1437         }
1438 #ifdef _WIN32
1439         interface_opts->extcap_pipe_h = pipe_h;
1440 #endif
1441
1442         /* Create extcap call */
1443         args = extcap_prepare_arguments(interface_opts);
1444
1445         pipedata = g_new0(ws_pipe_t, 1);
1446
1447         pid = ws_pipe_spawn_async(pipedata, args);
1448
1449         g_ptr_array_foreach(args, ptr_array_free, NULL);
1450         g_ptr_array_free(args, TRUE);
1451
1452         if (pid == WS_INVALID_PID)
1453         {
1454             g_free(pipedata);
1455             continue;
1456         }
1457
1458         ws_close(pipedata->stdin_fd);
1459         interface_opts->extcap_pid = pid;
1460
1461         interface_opts->extcap_child_watch =
1462             g_child_watch_add(pid, extcap_child_watch_cb, (gpointer)capture_opts);
1463
1464 #ifdef _WIN32
1465         /* On Windows, wait for extcap to connect to named pipe.
1466          * Some extcaps will present UAC screen to user.
1467          * 30 second timeout should be reasonable timeout for extcap to
1468          * connect to named pipe (including user interaction).
1469          * Wait on multiple object in case of extcap termination
1470          * without opening pipe.
1471          */
1472         if (pid != WS_INVALID_PID)
1473         {
1474             HANDLE pipe_handles[3];
1475             int num_pipe_handles = 1;
1476             pipe_handles[0] = interface_opts->extcap_pipe_h;
1477
1478             if (extcap_has_toolbar(interface_opts->name))
1479             {
1480                 pipe_handles[1] = interface_opts->extcap_control_in_h;
1481                 pipe_handles[2] = interface_opts->extcap_control_out_h;
1482                 num_pipe_handles += 2;
1483              }
1484
1485             ws_pipe_wait_for_pipe(pipe_handles, num_pipe_handles, pid);
1486         }
1487 #endif
1488
1489         interface_opts->extcap_pipedata = (gpointer) pipedata;
1490     }
1491
1492     return TRUE;
1493 }
1494
1495 #ifdef _WIN32
1496 gboolean extcap_create_pipe(const gchar *ifname, gchar **fifo, const gchar *pipe_prefix)
1497 {
1498     gchar timestr[ 14 + 1 ];
1499     time_t current_time;
1500     gchar *pipename = NULL;
1501     SECURITY_ATTRIBUTES security;
1502
1503     /* create pipename */
1504     current_time = time(NULL);
1505     /*
1506      * XXX - we trust Windows not to return a time before the Epoch here,
1507      * so we won't get a null pointer back from localtime().
1508      */
1509     strftime(timestr, sizeof(timestr), "%Y%m%d%H%M%S", localtime(&current_time));
1510     pipename = g_strconcat("\\\\.\\pipe\\", pipe_prefix, "_", ifname, "_", timestr, NULL);
1511
1512     /* Security struct to enable Inheritable HANDLE */
1513     memset(&security, 0, sizeof(SECURITY_ATTRIBUTES));
1514     security.nLength = sizeof(SECURITY_ATTRIBUTES);
1515     security.bInheritHandle = TRUE;
1516     security.lpSecurityDescriptor = NULL;
1517
1518     /* create a namedPipe */
1519     pipe_h = CreateNamedPipe(
1520                  utf_8to16(pipename),
1521                  PIPE_ACCESS_DUPLEX | FILE_FLAG_OVERLAPPED,
1522                  PIPE_TYPE_BYTE | PIPE_READMODE_BYTE | PIPE_WAIT,
1523                  1, 65536, 65536,
1524                  300,
1525                  &security);
1526
1527     if (pipe_h == INVALID_HANDLE_VALUE)
1528     {
1529         g_log(LOG_DOMAIN_CAPTURE, G_LOG_LEVEL_DEBUG, "\nError creating pipe => (%d)", GetLastError());
1530         g_free (pipename);
1531         return FALSE;
1532     }
1533     else
1534     {
1535         g_log(LOG_DOMAIN_CAPTURE, G_LOG_LEVEL_DEBUG, "\nWireshark Created pipe =>(%s)", pipename);
1536         *fifo = g_strdup(pipename);
1537     }
1538
1539     return TRUE;
1540 }
1541 #else
1542 gboolean extcap_create_pipe(const gchar *ifname, gchar **fifo, const gchar *pipe_prefix)
1543 {
1544     gchar *temp_name = NULL;
1545     int fd = 0;
1546
1547     gchar *pfx = g_strconcat(pipe_prefix, "_", ifname, NULL);
1548     if ((fd = create_tempfile(&temp_name, pfx, NULL)) < 0)
1549     {
1550         g_free(pfx);
1551         return FALSE;
1552     }
1553     g_free(pfx);
1554
1555     ws_close(fd);
1556
1557     g_log(LOG_DOMAIN_CAPTURE, G_LOG_LEVEL_DEBUG,
1558           "Extcap - Creating fifo: %s", temp_name);
1559
1560     if (file_exists(temp_name))
1561     {
1562         ws_unlink(temp_name);
1563     }
1564
1565     if (mkfifo(temp_name, 0600) == 0)
1566     {
1567         *fifo = g_strdup(temp_name);
1568     }
1569
1570     return TRUE;
1571 }
1572 #endif
1573
1574 /************* EXTCAP LOAD INTERFACE LIST ***************
1575  *
1576  * The following code handles loading and reloading the interface list. It is explicitly
1577  * kept separate from the rest
1578  */
1579
1580
1581 static void
1582 extcap_free_interface_info(gpointer data)
1583 {
1584     extcap_info *info = (extcap_info *)data;
1585
1586     g_free(info->basename);
1587     g_free(info->full_path);
1588     g_free(info->version);
1589     g_free(info->help);
1590
1591     extcap_free_interfaces(info->interfaces);
1592
1593     g_free(info);
1594 }
1595
1596 static extcap_info *
1597 extcap_ensure_interface(const gchar * toolname, gboolean create_if_nonexist)
1598 {
1599     extcap_info * element = 0;
1600
1601     if ( prefs.capture_no_extcap )
1602         return NULL;
1603
1604     if ( ! toolname )
1605         return element;
1606
1607     if ( ! _loaded_interfaces )
1608         _loaded_interfaces = g_hash_table_new_full(g_str_hash, g_str_equal, g_free, extcap_free_interface);
1609
1610     element = (extcap_info *) g_hash_table_lookup(_loaded_interfaces, toolname );
1611     if ( ! element && create_if_nonexist )
1612     {
1613         g_hash_table_insert(_loaded_interfaces, g_strdup(toolname), g_new0(extcap_info, 1));
1614         element = (extcap_info *) g_hash_table_lookup(_loaded_interfaces, toolname );
1615     }
1616
1617     return element;
1618 }
1619
1620 extcap_info *
1621 extcap_get_tool_by_ifname(const gchar *ifname)
1622 {
1623     if ( ifname && _tool_for_ifname )
1624     {
1625         gchar * toolname = (gchar *)g_hash_table_lookup(_tool_for_ifname, ifname);
1626         if ( toolname )
1627             return extcap_ensure_interface(toolname, FALSE);
1628     }
1629
1630     return NULL;
1631 }
1632
1633 extcap_info *
1634 extcap_get_tool_info(const gchar * toolname)
1635 {
1636     return extcap_ensure_interface(toolname, FALSE);
1637 }
1638
1639 static void remove_extcap_entry(gpointer entry, gpointer data _U_)
1640 {
1641     extcap_interface *int_iter = (extcap_interface*)entry;
1642
1643     if (int_iter->if_type == EXTCAP_SENTENCE_EXTCAP)
1644         extcap_free_interface(entry);
1645 }
1646
1647 static gboolean cb_load_interfaces(extcap_callback_info_t cb_info)
1648 {
1649     GList * interfaces = NULL, * control_items = NULL, * walker = NULL;
1650     extcap_interface * int_iter = NULL;
1651     extcap_info * element = NULL;
1652     iface_toolbar * toolbar_entry = NULL;
1653     gchar * toolname = g_path_get_basename(cb_info.extcap);
1654
1655     GList * interface_keys = g_hash_table_get_keys(_loaded_interfaces);
1656
1657     /* Load interfaces from utility */
1658     interfaces = extcap_parse_interfaces(cb_info.output, &control_items);
1659
1660     g_log(LOG_DOMAIN_CAPTURE, G_LOG_LEVEL_DEBUG, "Loading interface list for %s ", cb_info.extcap);
1661
1662     /* Seems, that there where no interfaces to be loaded */
1663     if ( ! interfaces || g_list_length(interfaces) == 0 )
1664     {
1665         g_log(LOG_DOMAIN_CAPTURE, G_LOG_LEVEL_DEBUG, "Cannot load interfaces for %s", cb_info.extcap );
1666         /* Some utilities, androiddump for example, may actually don't present any interfaces, even
1667          * if the utility itself is present. In such a case, we return here, but do not return
1668          * FALSE, or otherwise further loading of other utilities will be stopped */
1669         g_list_free(interface_keys);
1670         g_free(toolname);
1671         return TRUE;
1672     }
1673
1674     /* Load or create the storage element for the tool */
1675     element = extcap_ensure_interface(toolname, TRUE);
1676     if ( element == NULL )
1677     {
1678         g_log(LOG_DOMAIN_CAPTURE, G_LOG_LEVEL_ERROR, "Cannot store interface %s, maybe duplicate?", cb_info.extcap );
1679         g_list_foreach(interfaces, remove_extcap_entry, NULL);
1680         g_list_free(interfaces);
1681         g_list_free(interface_keys);
1682         g_free(toolname);
1683         return FALSE;
1684     }
1685
1686     if (control_items)
1687     {
1688         toolbar_entry = g_new0(iface_toolbar, 1);
1689         toolbar_entry->controls = control_items;
1690     }
1691
1692     walker = interfaces;
1693     gchar* help = NULL;
1694     while (walker != NULL)
1695     {
1696         int_iter = (extcap_interface *)walker->data;
1697
1698         if (int_iter->call != NULL)
1699             g_log(LOG_DOMAIN_CAPTURE, G_LOG_LEVEL_DEBUG, "Interface found %s\n", int_iter->call);
1700
1701         /* Help is not necessarily stored with the interface, but rather with the version string.
1702          * As the version string allways comes in front of the interfaces, this ensures, that it get's
1703          * properly stored with the interface */
1704         if (int_iter->if_type == EXTCAP_SENTENCE_EXTCAP)
1705         {
1706             if (int_iter->call != NULL)
1707                 g_log(LOG_DOMAIN_CAPTURE, G_LOG_LEVEL_DEBUG, "  Extcap [%s] ", int_iter->call);
1708
1709             /* Only initialize values if none are set. Need to check only one element here */
1710             if ( ! element->version )
1711             {
1712                 element->version = g_strdup(int_iter->version);
1713                 element->basename = g_strdup(toolname);
1714                 element->full_path = g_strdup(cb_info.extcap);
1715                 element->help = g_strdup(int_iter->help);
1716             }
1717
1718             help = int_iter->help;
1719             if (toolbar_entry)
1720             {
1721                 toolbar_entry->menu_title = g_strdup(int_iter->display);
1722                 toolbar_entry->help = g_strdup(int_iter->help);
1723             }
1724
1725             walker = g_list_next(walker);
1726             continue;
1727         }
1728
1729         /* Only interface definitions will be parsed here. help is already set by the extcap element,
1730          * which makes it necessary to have version in the list before the interfaces. This is normally
1731          * the case by design, but could be changed by separating the information in extcap-base. */
1732         if ( int_iter->if_type == EXTCAP_SENTENCE_INTERFACE )
1733         {
1734             if ( g_list_find(interface_keys, int_iter->call) )
1735             {
1736                 g_log(LOG_DOMAIN_CAPTURE, G_LOG_LEVEL_WARNING, "Extcap interface \"%s\" is already provided by \"%s\" ",
1737                       int_iter->call, (gchar *)extcap_if_executable(int_iter->call));
1738                 walker = g_list_next(walker);
1739                 continue;
1740             }
1741
1742             if ((int_iter->call != NULL) && (int_iter->display))
1743                 g_log(LOG_DOMAIN_CAPTURE, G_LOG_LEVEL_DEBUG, "  Interface [%s] \"%s\" ", int_iter->call, int_iter->display);
1744
1745             int_iter->extcap_path = g_strdup(cb_info.extcap);
1746
1747             /* Only set the help, if it exists and no parsed help information is present */
1748             if ( ! int_iter->help && help )
1749                 int_iter->help = g_strdup(help);
1750
1751             element->interfaces = g_list_append(element->interfaces, int_iter);
1752             g_hash_table_insert(_tool_for_ifname, g_strdup(int_iter->call), g_strdup(toolname));
1753
1754             if (toolbar_entry)
1755             {
1756                 if (!toolbar_entry->menu_title)
1757                 {
1758                     toolbar_entry->menu_title = g_strdup(int_iter->display);
1759                 }
1760                 toolbar_entry->ifnames = g_list_append(toolbar_entry->ifnames, g_strdup(int_iter->call));
1761             }
1762         }
1763
1764         walker = g_list_next(walker);
1765     }
1766
1767     if (toolbar_entry && toolbar_entry->menu_title)
1768     {
1769         iface_toolbar_add(toolbar_entry);
1770         extcap_iface_toolbar_add(cb_info.extcap, toolbar_entry);
1771     }
1772
1773     g_list_foreach(interfaces, remove_extcap_entry, NULL);
1774     g_list_free(interfaces);
1775     g_list_free(interface_keys);
1776     g_free(toolname);
1777     return TRUE;
1778 }
1779
1780
1781 /* Handles loading of the interfaces.
1782  *
1783  * A list of interfaces can be obtained by calling \ref extcap_loaded_interfaces
1784  */
1785 static void
1786 extcap_load_interface_list(void)
1787 {
1788     gchar *error = NULL;
1789
1790     if (prefs.capture_no_extcap)
1791         return;
1792
1793     if (_toolbars)
1794     {
1795         // Remove existing interface toolbars here instead of in extcap_clear_interfaces()
1796         // to avoid flicker in shown toolbars when refreshing interfaces.
1797         GList *toolbar_list = g_hash_table_get_values (_toolbars);
1798         for (GList *walker = toolbar_list; walker; walker = walker->next)
1799         {
1800             iface_toolbar *toolbar = (iface_toolbar *) walker->data;
1801             iface_toolbar_remove(toolbar->menu_title);
1802         }
1803         g_hash_table_remove_all(_toolbars);
1804     } else {
1805         _toolbars = g_hash_table_new_full(g_str_hash, g_str_equal, g_free, extcap_free_toolbar);
1806     }
1807
1808     if (_loaded_interfaces == NULL)
1809     {
1810         GList * arguments = NULL;
1811         GList * fallback = NULL;
1812         int major = 0;
1813         int minor = 0;
1814
1815         _loaded_interfaces = g_hash_table_new_full(g_str_hash, g_str_equal, g_free, extcap_free_interface_info);
1816         /* Cleanup lookup table */
1817         if ( _tool_for_ifname )
1818         {
1819             g_hash_table_remove_all(_tool_for_ifname);
1820             _tool_for_ifname = 0;
1821         } else {
1822             _tool_for_ifname = g_hash_table_new_full(g_str_hash, g_str_equal, g_free, g_free);
1823         }
1824
1825         arguments = g_list_append(arguments, g_strdup(EXTCAP_ARGUMENT_LIST_INTERFACES));
1826         fallback = g_list_append(fallback, g_strdup(EXTCAP_ARGUMENT_LIST_INTERFACES));
1827
1828         get_ws_version_number(&major, &minor, NULL);
1829         arguments = g_list_append(arguments, g_strdup_printf("%s=%d.%d", EXTCAP_ARGUMENT_VERSION, major, minor));
1830
1831         extcap_callback_info_t cb_info;
1832         cb_info.data = NULL;
1833         cb_info.ifname = NULL;
1834         cb_info.err_str = &error;
1835
1836         extcap_foreach(arguments, cb_load_interfaces, cb_info, fallback);
1837
1838         g_list_free_full(fallback, g_free);
1839         g_list_free_full(arguments, g_free);
1840     }
1841 }
1842
1843 /*
1844  * Editor modelines  -  http://www.wireshark.org/tools/modelines.html
1845  *
1846  * Local variables:
1847  * c-basic-offset: 4
1848  * tab-width: 8
1849  * indent-tabs-mode: nil
1850  * End:
1851  *
1852  * vi: set shiftwidth=4 tabstop=8 expandtab:
1853  * :indentSize=4:tabSize=8:noTabs=true:
1854  */