lists.openwall.net   lists  /  announce  owl-users  owl-dev  john-users  john-dev  passwdqc-users  yescrypt  popa3d-users  /  oss-security  kernel-hardening  musl  sabotage  tlsify  passwords  /  crypt-dev  xvendor  /  Bugtraq  Full-Disclosure  linux-kernel  linux-netdev  linux-ext4  linux-hardening  linux-cve-announce  PHC 
Open Source and information security mailing list archives
 
Hash Suite: Windows password security audit tool. GUI, reports in PDF.
[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Date:	Tue, 24 Oct 2006 13:19:59 +0200
From:	Wouter de Waal <wrm@...i.co.za>
To:	linux-kernel@...r.kernel.org
Subject: FDDI on Linux kernel 2.6

2006-10-24

Hi

We here at CCII Systems are probably the only company in the world still
actively involved with FDDI. The Linux Syskonnect FDDI driver needs a
patch. I have no idea who to speak to, but the guys over at osdl said I
must ask here.

We recently had two separate customers ask us why the FDDI driver in
the Linux kernel version 2.6.x does not work properly.

The first customer eventually found that the driver does not work when
the kernel is configured to use 64 bit memory addressing. This would
obviously have to do with the pointer sizes used by the driver structure.

They did not need 64 bit addressing, and solved their problem by
reconfiguring their kernel for 32 bit addressing.

Is it possible to configure things so that this issue is highlighted
when the kernel is built?

The second customer's problem could not be solved by the above. They
eventually found that kernel 2.6 (specifically, 2.6.8) uses memory
mapping, and that a check in the driver caused an exception because
of the length of the PCI region being 2048 and not 16384 (0x4000).


>//2.6.8 version from skfddi.c
>
>#ifdef MEM_MAPPED_IO
>
>if (!(pci_resource_flags(pdev, 0) & IORESOURCE_MEM)) {
>   printk(KERN_ERR "skfp: region is not an MMIO resource\n");
>   err = -EIO;
>   goto err_out1;
>}
>
>port = pci_resource_start(pdev, 0);
>len = pci_resource_len(pdev, 0);
>if (len < 0x4000) {
>   printk(KERN_ERR "skfp: Invalid PCI region size: %lu\n", len);
>   err = -EIO;
>   goto err_out1;
>}
>
>#else

The customer reports that changing the compare to

>if (len < 2048) {

fixed the problem for them.

Can this patch be applied to the kernel please?

Regards

Wouter

-- 

Wouter de Waal                              Cell  : +27 82 893 8042
Development Manager - Board-Level Products  Phone : +27 21 683 5490
CCII Systems, Kenilworth, South Africa      Fax   : +27 21 683 5435

-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

Powered by blists - more mailing lists

Powered by Openwall GNU/*/Linux Powered by OpenVZ