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
|
package network::ndiswrapper;
use strict;
use common;
use modules;
use detect_devices;
my $ndiswrapper_root = "/etc/ndiswrapper";
sub installed_drivers() {
grep { -d $::prefix . "$ndiswrapper_root/$_" } all($::prefix . $ndiswrapper_root);
}
sub present_devices {
my ($driver) = @_;
my @supported_devices;
foreach (all($::prefix . "$ndiswrapper_root/$driver")) {
my ($ids) = /^([0-9A-Z]{4}:[0-9A-Z]{4})\.[05]\.conf$/;
$ids and push @supported_devices, $ids;
}
grep { member(uc(sprintf("%04x:%04x", $_->{vendor}, $_->{id})), @supported_devices) } detect_devices::probeall();
}
sub get_devices {
my ($in, $driver) = @_;
my @devices = present_devices($driver);
@devices or $in->ask_warn(N("Error"), N("No device supporting the %s ndiswrapper driver is present!", $driver));
@devices;
}
sub ask_driver {
my ($in) = @_;
if (my $inf_file = $in->ask_file(N("Please select the Windows driver (.inf file)"), "/mnt/cdrom")) {
my $driver = basename(lc($inf_file));
$driver =~ s/\.inf$//;
#- first uninstall the driver if present, may solve issues if it is corrupted
require run_program;
-d $::prefix . "$ndiswrapper_root/$driver" and run_program::rooted($::prefix, 'ndiswrapper', '-e', $driver);
unless (run_program::rooted($::prefix, 'ndiswrapper', '-i', $inf_file)) {
$in->ask_warn(N("Error"), N("Unable to install the %s ndiswrapper driver!", $driver));
return undef;
}
return $driver;
}
undef;
}
sub find_matching_devices {
my ($device) = @_;
my $net_path = '/sys/class/net';
my @devices;
foreach my $interface (all($net_path)) {
my $dev_path = "$net_path/$interface/device";
-l $dev_path or next;
my $map = detect_devices::get_sysfs_device_id_map($dev_path);
if (every { hex(chomp_(cat_("$dev_path/" . $map->{$_}))) eq $device->{$_} } keys %$map) {
my $driver = readlink("$net_path/$interface/driver");
$driver =~ s!.*/!!;
push @devices, [ $interface, $driver ];
}
}
@devices;
}
sub find_conflicting_devices {
my ($device) = @_;
grep { $_->[1] ne "ndiswrapper" } find_matching_devices($device);
}
sub find_interface {
my ($device) = @_;
my $dev = find { $_->[1] eq "ndiswrapper" } find_matching_devices($device);
$dev->[0];
}
sub setup_device {
my ($in, $device) = @_;
#- unload ndiswrapper first so that the newly installed .inf files will be read
eval { modules::unload("ndiswrapper") };
eval { modules::load("ndiswrapper") };
if ($@) {
$in->ask_warn(N("Error"), N("Unable to load the ndiswrapper module!"));
return;
}
my @conflicts = find_conflicting_devices($device);
if (@conflicts) {
$in->ask_yesorno(N("Warning"), N("The selected device has already been configured with the %s driver.
Do you really want to use a ndiswrapper driver?", $conflicts[0][1])) or return;
}
my $interface = find_interface($device);
unless ($interface) {
$in->ask_warn(N("Error"), N("Unable to find the ndiswrapper interface!"));
return;
}
$interface;
}
1;
|