what would happen if a process wrote to its own stdin?


 
Thread Tools Search this Thread
Top Forums Programming what would happen if a process wrote to its own stdin?
# 8  
Old 04-01-2009
Quote:
Originally Posted by pshaikh
Hi

I know that a.out should be executed as "./a.out" , it was typing mistake.

file.txt is redircted as a.out's standard in put. In my program, I am writing to standard input (as shown in the first post)
yes, so the content of file.txt will be written to stdin of a.out

to demonstrate...

Code:
#include <sys/types.h>
#include <sys/stat.h>
#include <unistd.h>
#include <stdio.h>


int main(void) 
{
    struct stat st;
    char *whichtty;

    if ( !isatty(STDIN_FILENO) ) 
    {
	    (void) fprintf(stderr, "%s\n", "stdin is not connected to a tty device.");
    } 
    else 
    {
	    if ( (whichtty = ttyname(STDIN_FILENO)) == NULL ) 
	    {
	        perror("ttyname");
            return 1;
	    } 
	    else 
	    {
	        (void) fprintf(stderr, "stdin is connected to tty device %s.\n", whichtty);
	    }
    }

    if ( fstat(STDIN_FILENO, &st) == -1 ) 
    {
	    perror("file status");
	    return 1;
    } 
    else 
    {
	    if ( st.st_mode & S_IWUSR ) 
	    {
	        (void) fprintf(stderr, "%s\n", "stdin appears to be writeable by the user.");
	    } 
	    else 
	    {
	        (void) fprintf(stderr, "%s\n", "stdin does not appear to be writeable by the user.");
	    }
    }
    return 0;
}

OP:
Code:
[c_d@localhost C scratchpad]$ gcc temp.c
[c_d@localhost C scratchpad]$ ./a.out
stdin is connected to tty device /dev/pts/3.
stdin appears to be writeable by the user.
[c_d@localhost C scratchpad]$ ./a.out <temp.c        #this is what you are doing
stdin is not connected to a tty device.
stdin appears to be writeable by the user.
[c_d@localhost C scratchpad]$ chmod -w temp.c  #remove write perm
[c_d@localhost C scratchpad]$ ./a.out <temp.c
stdin is not connected to a tty device.
stdin does not appear to be writeable by the user.
[c_d@localhost C scratchpad]$ chmod +w temp.c

Can someone explain all this to me...or do you think its best I not dig into all this...???

Last edited by c_d; 04-01-2009 at 03:12 AM..
# 9  
Old 04-01-2009
Quote:
Originally Posted by c_d
yes, so the content of file.txt will be written to stdin of a.out
Hi,

I know Smilie May be I was not clear enough of what I am trying to do,

The program is as follows -

Code:
int main()
{
   if( write(STDIN_FILENO,"arghh!",6) == -1 )
  {
      fprintf(stderr,"Error in write\n");
      exit(2);
  }
  return 0;
}

I am doing following on shell command line -

$>file.txt (this create an empty file.txt)
$./a.out < file.txt (redirect standard input of a.out to file.txt, a.out is supposed to WRITE to(not READ from) file.txt(that is what it is programmed to do).

($ is not part of command but of shell command prompt)

STDIN_FILENO's file status flag is 2 (O_RDWR - both read write allowed).

I expected that a.out writes to standard input; which is file.txt. But file.txt remains empty.

I am trying to understand 'why'

Anybody. Please illuminate
# 10  
Old 04-01-2009
Quote:
Originally Posted by pshaikh
Hi,

I know Smilie May be I was not clear enough of what I am trying to do,

The program is as follows -

Code:
int main()
{
   if( write(STDIN_FILENO,"arghh!",6) == -1 )
  {
      fprintf(stderr,"Error in write\n");
      exit(2);
  }
  return 0;
}

I am doing following on shell command line -

$>file.txt (this create an empty file.txt)
$./a.out < file.txt (redirect standard input of a.out to file.txt, a.out is supposed to WRITE to(not READ from) file.txt(that is what it is programmed to do).

($ is not part of command but of shell command prompt)

STDIN_FILENO's file status flag is 2 (O_RDWR - both read write allowed).

I expected that a.out writes to standard input; which is file.txt. But file.txt remains empty.

I am trying to understand 'why'

Anybody. Please illuminate
Code:
[c_d@localhost cfiles]$ cat temp.c
#include<unistd.h>
#include<fcntl.h>

int main()
{

    if((write(STDIN_FILENO,"arrgh!",6))==-1)
    {
        perror("error writing to file");
    }    

}


[c_d@localhost cfiles]$ touch file     #create empty file
[c_d@localhost cfiles]$ cat file        #you can see, that the file is empty
[c_d@localhost cfiles]$ gcc temp.c  #compile temp.c
[c_d@localhost cfiles]$ ./a.out 0>file #redirection notice no "arrgh!" prints
[c_d@localhost cfiles]$ cat file         #because "arrgh!" is redirected to file
arrgh![c_d@localhost cfiles]$ rm file ; touch file  
[c_d@localhost cfiles]$ ./a.out <file      # :(
error writing to file: Bad file descriptor
[c_d@localhost cfiles]$

Smilie i dunno...why that happens. probably because file connects to stdin of a.out first, so when write command executes, stdin is connected to file so it is not able to write into stdin, hence it returns -1.

Last edited by c_d; 04-01-2009 at 08:29 AM..
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. What is on Your Mind?

Ah, the AMIGA, (another poem I wrote in 2005).

Well I wrote this in 2005 and uploaded to AMINET.as a commemoration of a machine that is still in use today. It is now 29 years since this machne came into being. Phenominal and it is still being supported- WOW! My A1200 is on 24/7 and I use it to test code developed on AMIGA emulators... ... (0 Replies)
Discussion started by: wisecracker
0 Replies

2. Shell Programming and Scripting

Crontab - wrote Simple Script but i cant work out how to play it at a certain time.

Hi everyone. Silly might be silly be I'm still new to bash. I'm trying to make an Alarm Clock for in the morning using my laptop i have wrote this Simple Script but i cant work out how to play it at a certain time. #!/bin/bash cd /home/josh/Music/Bruno_Mars/Hooligans/ cvlc... (8 Replies)
Discussion started by: jtsmith90
8 Replies

3. UNIX for Advanced & Expert Users

Who actually wrote Professional Linux Programming ?

Hello, Who actually wrote Professional Linux Programming of Wrox publication as there are two different sets of writers, one set consists of Jon Masters and Richard Blum and another set of writers is Neil Mathew with lots of other writers. Plz resolve it. I'm really confused. Regards.. (0 Replies)
Discussion started by: vectrum
0 Replies

4. UNIX for Dummies Questions & Answers

What Does Happen During Boot Process? - BIOS and MBR

I'm talking about boot process in multi-boot Linux perceptive. Please tell me whether my explanation is right or wrong? If wrong, please explain. "The BIOS checks the system and loads this initial bootstrapping code into memory. This initial bootstrap code searches for an active partition... (0 Replies)
Discussion started by: f.ben.isaac
0 Replies

5. AIX

How does ITIL processing happen in AIX?

How does ITIL process is implemened in AIX? (6 Replies)
Discussion started by: AIXlearner
6 Replies

6. UNIX for Dummies Questions & Answers

whats happen when we create new user

hi frndz I wanna knw exatly what happen when we create new user... which directories are created ?? which files are modified ?? thanx.... (2 Replies)
Discussion started by: luckypower
2 Replies

7. UNIX for Advanced & Expert Users

Unix ID deleted - What happen to process

I have an unix id (AIX system) which is used to run a couple of processes. They also write some log files into a file system (that is not in the home directory of the user id, but in different location). One bad day, the id was deleted accidentally. But the home directory, files and everything... (1 Reply)
Discussion started by: cmgreat
1 Replies

8. UNIX for Dummies Questions & Answers

What would happen if. . .

Hi, Could someone please tell me what would happen if the following were entered into the command line: rm -i /books/*.* rm /books/* Many thanks! (3 Replies)
Discussion started by: crispy
3 Replies

9. Programming

Any one can tell me how this happen?

The #1 Online Store for Louis Vuitton Replicas is: http://www.opichina.com.cn. We offer Louis Vuitton Replicas and more! Whatever you call it: LV Bags, LV Replicas, Louis Vuitton Fake, Louis Vuitton Knockoffs, Louis Vuitton Bag, Louis Vuitton Purse, Louis Vuitton Wallet, Louis Vuitton Shoes,... (10 Replies)
Discussion started by: jiangyanna
10 Replies

10. UNIX for Dummies Questions & Answers

what happen when changing Hostname?

I 'm using RH 7.2 Genome in the Network Configuration I change therer are two places one for static hostname for my machine and in DNS hostname I don't know what happen when restarting my PC when connecting using dialer I can't browse the Internet also I can't use sendmail .......Server timeout... (2 Replies)
Discussion started by: atiato
2 Replies
Login or Register to Ask a Question