Sockets!?!?!?!?!?!

I am looking for a way to have a program listen on a port (example: 8000) for communication I will be sending via that port to it(Linux Kernel machine). Once it recieves an appropiate command I need it to run a .bat file in linux.

I know what I need to do but I am running into a few problems:

  1. I do not know [b][u]how[\B][\U] to listen to a socket in C

  2. I do not know [b][u]how[\B][\U] to run a .bat file from C

As mention above my OS is Linux Kernel on the machine that will need to listen to the port.

Suggestion or solution are greatly appreciated, code would be even more greatly appreciated.

Thanks

  1. http://www.ecst.csuchico.edu/~beej/guide/net/

  2. A .bat file? Isn't it on M$ only?

A batch file on unix is a shell script. A shell script has different syntax as M$ DOS batch files and in general you can't run a batch file directly on unix. Give the shell script file a 700 chmod. To run a shell script from C, read the system(3) manpage.

  1. Looking at it

  2. ???????? What system(3) manpage ????? (Note I did mean .sh not .bat, force of habbit that I but .bat down, sorry)

Thanks

Read the system(3) manpage by typing

man 3 system

  • or may be -

man system

on your command line and read the description inside on using system().

Alternatively, a better way may be to fork() a new process and use execl() to execute it. I can't give you examples on it right now. You ought to find some examples on google by typing fork and execl.

Ok I found some information on running Unix commands from C so that is good now back to the main topic, I spent some time and looked at Beej and I went from somewhat confused to totally confused on a number of points.

  1. When some of the methods are called the variables used are sometimes not declared in his examples, which is confusing the heck out of me.

  2. It only shows starting the listener by the method listen(), but my confusion is that after you declare how long does it listen before it stops?

  3. In order to recieve, which I am assuming would be in the same program and after the listener is started, does it continue looking for something to recieve before it moves on, or do I need to put it into some sort of loop?

  4. Off topic now but still very much needed. Can I compile a C program in windows and then transfer it over to a linux machine to run? Reason for this is because the linux machine I have doesn't have enough memory for a compiler.

Any suggestions or solutions are greatly appreciated.

Thanks

That guide is somewhat recommended by many college courses on Unix network programming. That's why I gave you this link.

  1. Really? When I read it some time ago I didn't recall I saw this problem. Perhaps a few places may be. I may help clarify if you give me exactly where the omissions go. By the way, they're functions, not methods. When you talked about methods I did take some time wondering what you meant.

  2. listen() lasts until you teardown the socket.

The chapter describing the functions do not have full examples. On the next chapter (Client-Server Background) you'll find examples in full that you can try on your system.

  1. Assuming you're using TCP (not datagrams). Once a server accept() a connection, from the accept(2) manpage, "it creates a new connected socket with mostly the same properties as s, and allocates a new file descriptor for the socket, which is returned." You can then use recv() on this returned socket (not the one which you called listen() on!) to receive data. You'll need to allocate a buffer, and very likely you should put it in a loop to get the incoming data in chunks. Somewhere in the document it mentioned encapsulating your data by putting a header indicating the length of data. You can use this scheme to decide whether you would like to make a dynamic buffer which fits all the data, for instance so you don't need multiple recvs.

  2. Theoretically you can, by using a cross-compiler, then one can compile a Unix C program on Windows or vice versa. I don't have any experience on gcc cross-compilers though, so you may need a search on google for this.

Thanks for the info, looks good. I actually found some better a better example and wrote the code below, if your interested. (Note there will be a few changes once I compile, I'm almost absolutely sure on that). Now comes the big questions:

  1. How can I get the program to startup when the linux kernel starts up(keep in mind it is only a does prompt, like unix)?

  2. Where can I find a C compiler?

I know that at least one of them is probably easy, but my only excuse is that it has been a very long day.

Thanks for all your assistance.

#include <stdio.h>
#include <sys/types.h>
#include <sys/socket.h>
#include <netinet/in.h>

int main()
{
 int sockfd, newsockfd, clilen, n;
 int portno = 8010;
 char buffer[256];
 struct sockaddr_in serv_addr,cli_addr;
 
 sockfd = socket(AF_INET, SOCK_STREAM, 0);
 if(sockfd < 0)
 {
  error("ERROR opening socket");
 }
 bzero((char *) &serv_addr, sizeof(serv_addr));
 
 serv_addr.sin_family = AF_INET;
 serv_addr.sin_port = htons(portno);
 serv_addr.sin_addr.s_addr = INADDR_ANY;
 
 if(bind(sockfd, (struct sockaddr *) &serv_addr, sizeof(serv_addr)) < 0)
 {
  error("ERROR on binding");
 }
 while(1==1)
 {
  listen(sockfd,5);
  clilen = sizeof(cli_addr);
  newsockfd = accept(sockfd, (struct sockaddr *) &cli_addr, &clilen);
  if(newsockfd < 0)
  {
   error("ERROR on accept");
  }
  bzero(buffer,256);
  n = read(newscokfd, buffer, 255);
  if(n < 0)
  {
   error("ERROR reading from socket");
  }
  else
  {
   system("./RunFile.sh");
   n = write(newsockfd,"Success",7);
   if(n < 0)
   {
    error("ERROR writing to socket");
   }
  }
 }
 return 0;
}
  1. You will then modify the rc scripts, e.g. somewhere like /etc/rc.d depending on the system you're using. Your distribution should have docs which tell you how to modify the rc scripts.

  2. Your Linux distribution should have a C compiler already, in RPM packages for example. Just check if one is installed. On Linux, you should use gcc. Type gcc -v and see if something comes up.

Actually the version of Linux that I am using is only a run down version and does not have GCC

Suggestion