Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

14
votes
3answers
967 views

Detect laptop lid closure and opening

Is it possible to detect when a laptop's lid is open or closed? From what I've read, this isn't possible, but SO has helped me with the impossible before. The only thing I've found that might be in ...
8
votes
3answers
3k views

Get hard disk serial number using Python on Linux

How can I get serial number of hard disk drive using Python code on Linux? I want to do this using a python module, not running external program such as hdparm etc. Perhaps I could use the fcntl ...
7
votes
7answers
14k views

“inappropriate ioctl for device”

I have a perl script running in a aix box. The script tries to open a file from a certain directory and it fails to read the file because file has no read permission. but i get a different error ...
5
votes
1answer
178 views

Replacement for the ioctl() function

I am developing a device driver I/O model for small microcontroller applications, using POSIX as a guideline for interface design. I implemented ioctl() as a means of controlling driver/hardware ...
5
votes
2answers
318 views

Adding custom struct types to strace

I'm trying to reverse-engineer a user-mode shared object that interacts with a kernel driver via ioctl syscalls. I have a header file with definitions for the kernel driver's ioctl interface (i.e. ...
4
votes
3answers
47 views

C/C++ Linux MAC Address of all interfaces

I am using the following code to retrieve all MAC addresses for current computer: ifreq ifr; ifconf ifc; char buf[1024]; int sock = socket(PF_INET, SOCK_DGRAM, IPPROTO_IP); if (sock == -1) { ... }; ...
4
votes
2answers
2k views

Sending ATA commands directly to device in Windows?

i'm trying to send ATA commands to a physical disk in Windows, and get the response from the device. Note: In this case i want to send the IDENTIFY DEVICE (0xEC) command. The device will respond ...
4
votes
1answer
270 views

Communication between delphi application and Windows NT system driver

I am trying to build a very simple driver. Its sole purpose will be to register "PsSetCreateProcessNotifyRoutine" and on callbacks recieved from kernel, notify my Win32 application about which ...
4
votes
3answers
996 views

How to find out if SCSI device (say /etc/sda) is a disk or not via ioctl calls or other?

How to find out if SCSI device (say /dev/sda) is a disk or not via ioctl calls or other ? I have tried the following but the ioctl call fails. My /dev/sda is a USB flash disk. #include ...
4
votes
3answers
530 views

Using Linux ioctl with Mono

I'm trying to do ioctl command through Mono framework, but I cant find what I'm looking for. I'm trying to send command to a DVB card that has a kernel module. I hope someone can link or explain ...
3
votes
1answer
228 views

How to invoke ioctl in shell script?

I'm trying to execute an ioctl call on a system with only bash and primitive base utilities. Is there any way to execute arbitrary ioctl command (if the params are simply integers) to a specific ...
3
votes
4answers
154 views

Why should files be mounted in Linux

I got an old library which does some manipulation with files on floppy\ CD (transferring the files on network paths). This library has a thread which checks on each second whether the file (e.g. the ...
3
votes
1answer
628 views

implementing ioctl() commands in FreeBSD

I am adding some code to an existing FreeBSD device driver and I am trying to pass a char* from user space to the driver. I've implemented a custom ioctl() command using the _IOW macro like so: ...
3
votes
3answers
4k views

Maximum buffer length for sendto?

How do you get the maximum number of bytes that can be passed to a sendto(..) call for a socket opened as a UDP port?
2
votes
1answer
326 views

Send IOCTL to Windows device driver - CreateFile fails

I want to send an IOCTL command to a PC/SC reader connected to my computer (win7 64 bit). In order to send an IOCTL command I need a HANDLE to the device, which I'm unable to create. The device is ...
2
votes
1answer
41 views

pty man page doubt/question

man pty says... The BSD ioctl(2) operations TIOCSTOP, TIOCSTART, TIOCUCNTL, and TIOCREMOTE have not been implemented under Linux. why so? How is these operations taken care of in linux?
2
votes
1answer
89 views

Are there any other ways to record iotcl calls besides strace?

I'm trying to see if certain ioctl calls get called when I call a function(this is on linux).There no way to cause the kernel to write a log with this sort of data, is there?
2
votes
1answer
2k views

Using ioctl communication between Kernel mode and user mode

I want to communicate with my kernel module using ioctl. I have written two c program one for kernel module and other for user mode. I am getting this error while compiling kernel module: error: ...
2
votes
1answer
75 views

The Uniqueness of IOCTL_MOUNTDEV_QUERY_UNIQUE_ID

The documentation on IOCTL_MOUNTDEV_QUERY_UNIQUE_ID is a bit confusing... exactly what kind of ID should be returned in the MOUNTDEV_UNIQUE_ID structure? The documentation for typedef struct ...
2
votes
1answer
329 views

Operation not permitted

I want to run some command in python script import fcntl KDSETLED = 0x4B32 SCR_LED = 0x01 console_fd = os.open('/dev/console', os.O_NOCTTY) fcntl.ioctl(console_fd, KDSETLED, SCR_LED) I've set ...
2
votes
5answers
416 views

How to know ip address for interfaces in c

Let's say I'm running a program called IpAddresses.c I want that program to get all IP addresses this device has according to each interface. Just like ifconfig. How can I do that. I don't know much ...
2
votes
2answers
434 views

get an ioctl file descriptor for ethernet port

I need to get the file descriptor to use in ioctl() calls for an ethernet port in Linux. Not sure how to do this.
2
votes
1answer
6k views

Calling DeviceIoControl from C# with IOCTL_DVD_* Control Codes

I am trying to call DeviceIoControl from C# for IOCTL_DVD_* control codes. Having read a lot of information and trying a number of examples I have not made much progress. What I am trying to ...
2
votes
3answers
4k views

unlocked_ioctl vs normal ioctl

In my driver's file_operations structure, I have: struct file_operations Fops = { read: device_read, write: device_write, unlocked_ioctl: device_ioctl, ... }; I.e. there is no ioctl ...
2
votes
2answers
7k views

reading / writing fram using I2C on Linux

I'm trying to read/write to a FM24CL64-GTR FRAM chip that is connected over a I2C bus on address 0b 1010 011. When I'm trying to write 3 bytes (data address 2 bytes, + data one byte), I get a kernel ...
1
vote
1answer
34 views

Adding new IOCTL's into kernel (number range)

I'm writing new kernel module and I add implement new IOCTL's. Is there any rule that I should follow with IOCTL's numbering ? Maybe there is some "user range" ? I work with kernel 2.6.21 on ...
1
vote
1answer
79 views

Why is there code running speed difference between linux user space and kernel space?

When I run some simple while loop code in linux user space and kernel space and measure elapsed time, I can get difference. test code is that access some hardware registers in Arm Cortex SoC chip. ...
1
vote
0answers
46 views

Is it possible to “wake up” linux kernel process from user space without system call?

I'm trying to modify a kernel module that manages a special hardware. The user space process, performs 2 ioctl() system calls per milliseconds to talk with the module. This doesn't meet my real.time ...
1
vote
1answer
51 views

How the user process can access the character device loaded by my module

I am trying to load into the kernel a system-call dynamically (without restarting the kernel and compailing it) in an attempt to (once in kernel mode) write to user process's memory. (I know there is ...
1
vote
1answer
66 views

Enumerate all network interfaces with IPs on FreeBSD

My application needs to list all network interafaces on a machine and their IPs, IPv4 and IPv6. I can get all interfaces with IPv4 IPs using ioctl(SIOCGIFCONF), but I need the IPv6 IPs, too. On ...
1
vote
1answer
73 views

Linux equivalent of I_PUSH

This question is related to pty terminal packet mode TIOCPKT What the linux way of enabling packet mode? I could not find I_PUSH working when passed in ioctl function.
1
vote
2answers
93 views

Is there a way to know how much data is available in a Python socket to receive?

I have figured out that I must use ioctl. There are similar questions here: How to tell how much data is in a Socket's send buffer Determing the number of bytes ready to be recv()'d My ...
1
vote
1answer
114 views

What is NetBSD's FIONSPACE ioctl equivalent in Linux?

I'm using Linux 2.6.38 (fc14). What is the ioctl flag to get the amount of free space on a socket file descriptor (say, a TCP socket)? I found NetBSD has FIONREAD, FIONWRITE and FIONSPACE for such ...
1
vote
2answers
605 views

Android ioctl - root permissions and usage

I'm working on some routing functionality in an Android app, and need to access ioctls. Since apps that use ioctls need root permission to run, the only way I've been able to call them is linking a ...
1
vote
2answers
486 views

Linux - ioctl with FIONREAD always 0

I'm trying to get to know how many bytes there are readable at my TCP socket. I am calling ioctl with the Flag "FIONREAD" which should actually give me this value. When I call the function I get as ...
1
vote
2answers
514 views

user mode permission denied to bind to socket

In user mode [non-root] on a linux machine, I am trying to bind a socket by using a ioctl(iInterfaceSocket, SIOCSIFADDR, &stCommand). I am getting error 13 -> Permission denied because of user ...
1
vote
1answer
2k views

Linux: ioctl/FIONREAD returning 0 bytes available at /dev/random?

After opening the file descriptor fd and other sanity checks for /dev/random, I am attempting to read how many bytes are readable from the device so I can pull this amount if it is required by my ...
1
vote
1answer
82 views

Does AIX support SIOCGLIFCONF?

To probe network adapter properties in IPv4, we can use SIOCGIFONF, SIOCGIFNETMASK etc. On HP-UX and Solaris, the IPv6 equivalents are SIOCGLIFONF, SIOCGLIFNETMASK. Does AIX support these ioctls ...
1
vote
1answer
428 views

Serial Mac OS X constantly freezes/locks/dissappears for USB to Arduino

I have a problem with my C++ code running in Xcode with both the AMSerial library as well as the generic C (ioctl, termios). After a fresh restart, my application works well but after I "kill" the ...
1
vote
4answers
603 views

What are the network ioctl man pages?

I would like to use the ioctl SIOCGIFADDR to determine the address of an interface in Linux. I found some web references that explain how to do this, but it seems like there should be some reference ...
1
vote
3answers
364 views

How do I get width and height of my terminal with ioctl?

What do I have to change to make this work? #!/usr/bin/perl use 5.012; use warnings; require "/usr/lib/perl5/vendor_perl/5.12.1/x86_64-linux-thread-multi/sys/ioctl.ph"; my ($rows, $cols, $xpix, ...
1
vote
3answers
334 views

Can ioctl commands in Linux be completely enumerated?

For the purpose of security-oriented source code review, I'm interested in finding (comprehensively) all ioctl commands that are registered in the Linux kernel. Also, I'd like to classify them as ...
1
vote
2answers
115 views

Uninterruptible read/write calls

At some point during my C programming adventures on Linux, I encountered flags (possibly ioctl/fcntl?), that make reads and writes on a file descriptor uninterruptible. Unfortunately I cannot recall ...
1
vote
1answer
291 views

ATA TRIM Specification?

Anyone know where I'd find an ATA reference that details the protocol for triggering a TRIM? I'm looking to discover what sort of structure/object/data I'd need to send in a raw IOCTL to get an ATA ...
1
vote
2answers
214 views

Turn off the display on remote PC

I'm fixing some bugs in the application for remote control (remote desktop-like) for Windows. And there is a feature that you can blank screen on remote machine - all the programms keep running ...
1
vote
4answers
946 views

C# - Possible to use IOCTL

I'm trying to code for a Point Of Sale system which allows for a "Cash Drawer" attachment. Code is provided in the manual for opening the cash drawer (in C++ using IOCTL). Since I am coding in C# ...
1
vote
2answers
118 views

Is there an OS X equivalent of FreeBSD's make_dev() function?

I'm trying to port some code from FreeBSD to OS X. The code is fairly low-level and it creates a number of special device files using make_dev() and controls functionality using functions like ...
1
vote
3answers
980 views

How to set the terminal's size?

How do I get the terminal size in Go. In C it would look like this: struct ttysize ts; ioctl(0, TIOCGWINSZ, &ts); But how to i access TIOCGWINSZ in Go
1
vote
2answers
690 views

Getting essid via ioctl in ruby

To avoid relying on the wireless tools I want to get the essid directly from the device with ioctl, in C this wouldn't be a problem, but in Ruby it's quite different. The problem is following struct ...
1
vote
2answers
1k views

Handling User-Break (UART Break) on a /dev/tty device in Linux

Here is some code sample, but the issue is that the signal handler is not called when a 'break' is sent over the serial line with 'putty'. #include <sys/ioctl.h> #include <termios.h> ...

1 2