Put unixsocket calls between #ifdef HAVE_UNIXSOCKET's - required for Stratus VOS
[tprouty/samba.git] / source / lib / util_sock.c
index 27336cefa22a25558201b7bcc9ec0ea0e77c4a51..fc2abf976f45512b299c5a7152e000e3127ff9de 100644 (file)
 
 #include "includes.h"
 
-#ifdef WITH_SSL
-#include <openssl/ssl.h>
-#undef Realloc  /* SSLeay defines this and samba has a function of this name */
-extern SSL  *ssl;
-extern int  sslFd;
-#endif  /* WITH_SSL */
-
 /* the last IP received from */
 struct in_addr lastip;
 
@@ -57,7 +50,7 @@ typedef struct smb_socket_option {
        int opttype;
 } smb_socket_option;
 
-smb_socket_option socket_options[] = {
+static const smb_socket_option socket_options[] = {
   {"SO_KEEPALIVE",      SOL_SOCKET,    SO_KEEPALIVE,    0,                 OPT_BOOL},
   {"SO_REUSEADDR",      SOL_SOCKET,    SO_REUSEADDR,    0,                 OPT_BOOL},
   {"SO_BROADCAST",      SOL_SOCKET,    SO_BROADCAST,    0,                 OPT_BOOL},
@@ -100,7 +93,7 @@ smb_socket_option socket_options[] = {
 static void print_socket_options(int s)
 {
        int value, vlen = 4;
-       smb_socket_option *p = &socket_options[0];
+       const smb_socket_option *p = &socket_options[0];
 
        for (; p->name != NULL; p++) {
                if (getsockopt(s, p->level, p->option, (void *)&value, &vlen) == -1) {
@@ -196,7 +189,7 @@ ssize_t read_udp_socket(int fd,char *buf,size_t len)
 /*******************************************************************
  checks if read data is outstanding.
  ********************************************************************/
-int read_data_outstanding(int fd, unsigned int time_out)
+static int read_data_outstanding(int fd, unsigned int time_out)
 {
        int selrtn;
        fd_set fds;
@@ -243,15 +236,7 @@ static ssize_t read_socket_with_timeout(int fd,char *buf,size_t mincnt,size_t ma
                if (mincnt == 0) mincnt = maxcnt;
                
                while (nread < mincnt) {
-#ifdef WITH_SSL
-                       if (fd == sslFd) {
-                               readret = SSL_read(ssl, buf + nread, maxcnt - nread);
-                       } else {
-                               readret = sys_read(fd, buf + nread, maxcnt - nread);
-                       }
-#else /* WITH_SSL */
                        readret = sys_read(fd, buf + nread, maxcnt - nread);
-#endif /* WITH_SSL */
                        
                        if (readret == 0) {
                                DEBUG(5,("read_socket_with_timeout: blocking read. EOF from client.\n"));
@@ -300,15 +285,7 @@ static ssize_t read_socket_with_timeout(int fd,char *buf,size_t mincnt,size_t ma
                        return -1;
                }
                
-#ifdef WITH_SSL
-               if (fd == sslFd) {
-                       readret = SSL_read(ssl, buf + nread, maxcnt - nread);
-               }else{
-                       readret = sys_read(fd, buf + nread, maxcnt - nread);
-               }
-#else /* WITH_SSL */
                readret = sys_read(fd, buf+nread, maxcnt-nread);
-#endif /* WITH_SSL */
                
                if (readret == 0) {
                        /* we got EOF on the file descriptor */
@@ -353,15 +330,7 @@ ssize_t read_with_timeout(int fd, char *buf, size_t mincnt, size_t maxcnt,
                if (mincnt == 0) mincnt = maxcnt;
                
                while (nread < mincnt) {
-#ifdef WITH_SSL
-                       if(fd == sslFd){
-                               readret = SSL_read(ssl, buf + nread, maxcnt - nread);
-                       }else{
-                               readret = sys_read(fd, buf + nread, maxcnt - nread);
-                       }
-#else /* WITH_SSL */
                        readret = sys_read(fd, buf + nread, maxcnt - nread);
-#endif /* WITH_SSL */
                        
                        if (readret <= 0)
                                return readret;
@@ -383,15 +352,7 @@ ssize_t read_with_timeout(int fd, char *buf, size_t mincnt, size_t maxcnt,
                if(selrtn <= 0)
                        return selrtn;
                
-#ifdef WITH_SSL
-               if(fd == sslFd){
-                       readret = SSL_read(ssl, buf + nread, maxcnt - nread);
-               }else{
-                       readret = sys_read(fd, buf + nread, maxcnt - nread);
-               }
-#else /* WITH_SSL */
                readret = sys_read(fd, buf+nread, maxcnt-nread);
-#endif /* WITH_SSL */
                
                if (readret <= 0)
                        return readret;
@@ -403,20 +364,6 @@ ssize_t read_with_timeout(int fd, char *buf, size_t mincnt, size_t maxcnt,
        return((ssize_t)nread);
 }
 
-/****************************************************************************
-send a keepalive packet (rfc1002)
-****************************************************************************/
-
-BOOL send_keepalive(int client)
-{
-       unsigned char buf[4];
-
-       buf[0] = SMBkeepalive;
-       buf[1] = buf[2] = buf[3] = 0;
-
-       return(write_socket_data(client,(char *)buf,4) == 4);
-}
-
 /****************************************************************************
   read data from the client, reading exactly N bytes. 
 ****************************************************************************/
@@ -429,15 +376,7 @@ ssize_t read_data(int fd,char *buffer,size_t N)
        smb_read_error = 0;
 
        while (total < N) {
-#ifdef WITH_SSL
-               if(fd == sslFd){
-                       ret = SSL_read(ssl, buffer + total, N - total);
-               }else{
-                       ret = sys_read(fd,buffer + total,N - total);
-               }
-#else /* WITH_SSL */
                ret = sys_read(fd,buffer + total,N - total);
-#endif /* WITH_SSL */
 
                if (ret == 0) {
                        DEBUG(10,("read_data: read of %d returned 0. Error = %s\n", (int)(N - total), strerror(errno) ));
@@ -467,15 +406,7 @@ static ssize_t read_socket_data(int fd,char *buffer,size_t N)
        smb_read_error = 0;
 
        while (total < N) {
-#ifdef WITH_SSL
-               if(fd == sslFd){
-                       ret = SSL_read(ssl, buffer + total, N - total);
-               }else{
-                       ret = sys_read(fd,buffer + total,N - total);
-    }
-#else /* WITH_SSL */
                ret = sys_read(fd,buffer + total,N - total);
-#endif /* WITH_SSL */
 
                if (ret == 0) {
                        DEBUG(10,("read_socket_data: recv of %d returned 0. Error = %s\n", (int)(N - total), strerror(errno) ));
@@ -503,15 +434,7 @@ ssize_t write_data(int fd,char *buffer,size_t N)
        ssize_t ret;
 
        while (total < N) {
-#ifdef WITH_SSL
-               if(fd == sslFd){
-                       ret = SSL_write(ssl,buffer + total,N - total);
-               }else{
-                       ret = sys_write(fd,buffer + total,N - total);
-               }
-#else /* WITH_SSL */
                ret = sys_write(fd,buffer + total,N - total);
-#endif /* WITH_SSL */
 
                if (ret == -1) {
                        DEBUG(0,("write_data: write failure. Error = %s\n", strerror(errno) ));
@@ -529,21 +452,13 @@ ssize_t write_data(int fd,char *buffer,size_t N)
  Write data to a socket - use send rather than write.
 ****************************************************************************/
 
-ssize_t write_socket_data(int fd,char *buffer,size_t N)
+static ssize_t write_socket_data(int fd,char *buffer,size_t N)
 {
        size_t total=0;
        ssize_t ret;
 
        while (total < N) {
-#ifdef WITH_SSL
-               if(fd == sslFd){
-                       ret = SSL_write(ssl,buffer + total,N - total);
-               }else{
-                       ret = sys_send(fd,buffer + total,N - total, 0);
-    }
-#else /* WITH_SSL */
                ret = sys_send(fd,buffer + total,N - total,0);
-#endif /* WITH_SSL */
 
                if (ret == -1) {
                        DEBUG(0,("write_socket_data: write failure. Error = %s\n", strerror(errno) ));
@@ -576,6 +491,21 @@ ssize_t write_socket(int fd,char *buf,size_t len)
        return(ret);
 }
 
+/****************************************************************************
+send a keepalive packet (rfc1002)
+****************************************************************************/
+
+BOOL send_keepalive(int client)
+{
+       unsigned char buf[4];
+
+       buf[0] = SMBkeepalive;
+       buf[1] = buf[2] = buf[3] = 0;
+
+       return(write_socket_data(client,(char *)buf,4) == 4);
+}
+
+
 /****************************************************************************
 read 4 bytes of a smb packet and return the smb length of the packet
 store the result in the buffer
@@ -702,40 +632,6 @@ BOOL receive_smb(int fd,char *buffer, unsigned int timeout)
        return(True);
 }
 
-/****************************************************************************
-  read an smb from a fd ignoring all keepalive packets. Note that the buffer 
-  *MUST* be of size BUFFER_SIZE+SAFETY_MARGIN.
-  The timeout is in milliseconds
-
-  This is exactly the same as receive_smb except that it never returns
-  a session keepalive packet (just as receive_smb used to do).
-  receive_smb was changed to return keepalives as the oplock processing means this call
-  should never go into a blocking read.
-****************************************************************************/
-
-BOOL client_receive_smb(int fd,char *buffer, unsigned int timeout)
-{
-  BOOL ret;
-
-  for(;;)
-  {
-    ret = receive_smb(fd, buffer, timeout);
-
-    if (!ret)
-    {
-      DEBUG(10,("client_receive_smb failed\n"));
-      show_msg(buffer);
-      return ret;
-    }
-
-    /* Ignore session keepalive packets. */
-    if(CVAL(buffer,0) != SMBkeepalive)
-      break;
-  }
-  show_msg(buffer);
-  return ret;
-}
-
 /****************************************************************************
   send an smb to a fd 
 ****************************************************************************/
@@ -760,45 +656,6 @@ BOOL send_smb(int fd,char *buffer)
        return True;
 }
 
-/****************************************************************************
-send a single packet to a port on another machine
-****************************************************************************/
-
-BOOL send_one_packet(char *buf,int len,struct in_addr ip,int port,int type)
-{
-  BOOL ret;
-  int out_fd;
-  struct sockaddr_in sock_out;
-
-  /* create a socket to write to */
-  out_fd = socket(AF_INET, type, 0);
-  if (out_fd == -1) 
-    {
-      DEBUG(0,("socket failed"));
-      return False;
-    }
-
-  /* set the address and port */
-  memset((char *)&sock_out,'\0',sizeof(sock_out));
-  putip((char *)&sock_out.sin_addr,(char *)&ip);
-  sock_out.sin_port = htons( port );
-  sock_out.sin_family = AF_INET;
-  
-  if (DEBUGLEVEL > 0)
-    DEBUG(3,("sending a packet of len %d to (%s) on port %d of type %s\n",
-            len,inet_ntoa(ip),port,type==SOCK_DGRAM?"DGRAM":"STREAM"));
-       
-  /* send it */
-  ret = (sendto(out_fd,buf,len,0,(struct sockaddr *)&sock_out,sizeof(sock_out)) >= 0);
-
-  if (!ret)
-    DEBUG(0,("Packet send to %s(%d) failed ERRNO=%s\n",
-            inet_ntoa(ip),port,strerror(errno)));
-
-  close(out_fd);
-  return(ret);
-}
-
 /****************************************************************************
  Open a socket of the specified type, port, and address for incoming data.
 ****************************************************************************/
@@ -851,7 +708,7 @@ int open_socket_in( int type, int port, int dlevel, uint32 socket_addr, BOOL reb
 
        /* now we've got a socket - we need to bind it */
        if( bind( res, (struct sockaddr *)&sock, sizeof(sock) ) == -1 ) {
-               if( DEBUGLVL(dlevel) && (port == SMB_PORT || port == NMB_PORT) ) {
+               if( DEBUGLVL(dlevel) && (port == SMB_PORT1 || port == SMB_PORT2 || port == NMB_PORT) ) {
                        dbgtext( "bind failed on port %d ", port );
                        dbgtext( "socket_addr = %s.\n", inet_ntoa( sock.sin_addr ) );
                        dbgtext( "Error = %s\n", strerror(errno) );
@@ -860,7 +717,7 @@ int open_socket_in( int type, int port, int dlevel, uint32 socket_addr, BOOL reb
                return( -1 ); 
        }
 
-       DEBUG( 3, ( "bind succeeded on port %d\n", port ) );
+       DEBUG( 10, ( "bind succeeded on port %d\n", port ) );
 
        return( res );
  }
@@ -1014,7 +871,7 @@ static BOOL matchname(char *remotehost,struct in_addr  addr)
        
        /* Look up the host address in the address list we just got. */
        for (i = 0; hp->h_addr_list[i]; i++) {
-               if (memcmp(hp->h_addr_list[i], (caddr_t) & addr, sizeof(addr)) == 0)
+               if (memcmp(hp->h_addr_list[i], (char *) & addr, sizeof(addr)) == 0)
                        return True;
        }
        
@@ -1107,37 +964,6 @@ char *get_socket_addr(int fd)
        return addr_buf;
 }
 
-/*******************************************************************
- opens and connects to a unix pipe socket
- ******************************************************************/
-int open_pipe_sock(char *path)
-{
-       int sock;
-       struct sockaddr_un sa;
-
-       sock = socket(AF_UNIX, SOCK_STREAM, 0);
-
-       if (sock < 0)
-       {
-               DEBUG(0, ("unix socket open failed\n"));
-               return sock;
-       }
-
-       ZERO_STRUCT(sa);
-       sa.sun_family = AF_UNIX;
-       safe_strcpy(sa.sun_path, path, sizeof(sa.sun_path)-1);
-
-       DEBUG(10, ("socket open succeeded.  file name: %s\n", sa.sun_path));
-
-       if (connect(sock, (struct sockaddr*) &sa, sizeof(sa)) < 0)
-       {
-               DEBUG(0,("socket connect to %s failed\n", sa.sun_path));
-               close(sock);
-               return -1;
-       }
-
-       return sock;
-}
 
 /*******************************************************************
  Create protected unix domain socket.
@@ -1147,9 +973,10 @@ int open_pipe_sock(char *path)
  permissions, instead.
  ******************************************************************/
 int create_pipe_sock(const char *socket_dir,
-                                       const char *socket_name,
-                                       mode_t dir_perms)
+                    const char *socket_name,
+                    mode_t dir_perms)
 {
+#ifdef HAVE_UNIXSOCKET
         struct sockaddr_un sunaddr;
         struct stat st;
         int sock;
@@ -1238,6 +1065,10 @@ int create_pipe_sock(const char *socket_dir,
         /* Success! */
         
         return sock;
+#else
+        DEBUG(0, ("create_pipe_sock: No Unix sockets on this system\n"));
+        return -1;
+#endif /* HAVE_UNIXSOCKET */
 }
 
 /*******************************************************************