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]
Message-ID: <49EDC44D.90106@maroy.hu>
Date:	Tue, 21 Apr 2009 15:04:13 +0200
From:	Maróy Ákos <akos@...oy.hu>
To:	linux-kernel@...r.kernel.org
Subject: cdc-acm driver hangs on poll() call - 2.6.27, works on 2.6.24

Hi,

I'm enocuntering an issue with the cdc-acm USB serial driver. I have an
embedded device that acts as a USB serial device, and is recognized USB
ACM device:

Apr 21 14:59:12 tomodachi kernel: [12207.024066] usb 1-1: new full speed
USB device using uhci_hcd and address 15
Apr 21 14:59:13 tomodachi kernel: [12207.188440] usb 1-1: configuration
#1 chosen from 1 choice
Apr 21 14:59:13 tomodachi kernel: [12207.198678] cdc_acm 1-1:1.0:
ttyACM0: USB ACM device


I'm using a very simple communication protocol with the device. here's
some sample C++ code that just asks a status, and waits for a reply:


#include <iostream>
#include <boost/asio.hpp>

using namespace boost::asio;

static const std::string serial_device("/dev/ttyACM0");

static const unsigned char status_message[] = { 6, 10, 0, 0, 0, 0 };
static unsigned char status_ack_message[64];

int main(int argc, char **argv) {

    io_service  io;
    serial_port sp(io);

    std::cerr << "opening serial device " << serial_device << std::endl;
    sp.open(serial_device);
    std::cerr << "serial port open: " << sp.is_open() << std::endl;

    std::cerr << "setting serial port parameters" << std::endl;
    sp.set_option(serial_port_base::baud_rate(19200));
    sp.set_option(serial_port_base::character_size(8));
    sp.set_option(serial_port_base::flow_control(
                                serial_port_base::flow_control::none));
    sp.set_option(serial_port_base::parity(
                                serial_port_base::parity::none));
    sp.set_option(serial_port_base::stop_bits(
                                serial_port_base::stop_bits::one));

    std::size_t written = write(sp, buffer(status_message));
    std::cerr << "written bytes: " << written << std::endl;

    std::size_t read = sp.read_some(buffer(status_ack_message));
    std::cerr << "read bytes: " << read << std::endl;

    return 0;
}


now, this all works fine on kernel 2.6.24 (ubuntu 8.04, gcc 4.2.4,
kernel 2.6.24-23-generic x86_64):

$ ./asio_serial
opening serial device /dev/ttyACM0
serial port open: 1
setting serial port parameters
written bytes: 6
read bytes: 48

the related strace is:

...
writev(5, [{"\6\n\0\0\0\0", 6}], 1)     = 6
write(2, "written bytes: ", 15written bytes: )         = 15
write(2, "6", 16)                        = 1
write(2, "\n", 1
)                       = 1
readv(5, 0x7fffb6ee8f90, 1)             = -1 EAGAIN (Resource
temporarily unavailable)
poll([{fd=5, events=POLLIN, revents=POLLIN}], 1, -1) = 1
readv(5, [{"0\v\0\0\0\0X\2\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"...,
64}], 1) = 48
write(2, "read bytes: ", 12read bytes: )            = 12
write(2, "48", 248)                       = 2
write(2, "\n", 1
)                       = 1
epoll_ctl(3, EPOLL_CTL_DEL, 5, {0, {u32=0, u64=0}}) = 0
close(5)                                = 0
close(3)                                = 0
close(4)                                = 0
exit_group(0)                           = ?
Process 24775 detached


now, if I run the same on 2.6.27 (ubuntu 8.10, kernel 2.6.27-11-generic
x86_64), the above hangs att the poll() call:

$ ./asio_serial
opening serial device /dev/ttyACM0
serial port open: 1
setting serial port parameters
written bytes: 6

the related strace is:

writev(5, [{"\6\n\0\0\0\0", 6}], 1)     = 6
write(2, "written bytes: ", 15written bytes: )         = 15
write(2, "6", 16)                        = 1
write(2, "\n", 1
)                       = 1
readv(5, 0x7fff135ac650, 1)             = -1 EAGAIN (Resource
temporarily unavailable)
poll( <unfinished ...>


and it just hangs there forever.

from the kernel changelog, I saw there were changes made to the cdc-acm
mobule between 2.6.24 and 2.6.27. might those changes by in relation to
the above effect?

any help is appreciated...


Akos
--
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