Palacios Public Git Repository

To checkout Palacios execute

  git clone http://v3vee.org/palacios/palacios.web/palacios.git
This will give you the master branch. You probably want the devel branch or one of the release branches. To switch to the devel branch, simply execute
  cd palacios
  git checkout --track -b devel origin/devel
The other branches are similar.


added utility socket functions
Jack Lange [Fri, 5 Jun 2009 22:03:38 +0000 (17:03 -0500)]
palacios/include/palacios/vmm_socket.h
palacios/src/palacios/vmm_socket.c

index deeb1a4..1e1d5f3 100644 (file)
@@ -41,7 +41,7 @@
            extern struct v3_socket_hooks * sock_hooks;         \
            int sock = 0;                                       \
            if ((sock_hooks) && (sock_hooks)->tcp_socket) {     \
-               sock = (sock_hooks)->tcp_socket(0,0,0);         \
+               sock = (sock_hooks)->tcp_socket(0,1,0);         \
            }                                                   \
            sock;                                               \
        })
 #define V3_SOCK_ZERO(p)    memset((void*)(p), 0, sizeof(*(p)))
 
 
+uint32_t v3_inet_addr(const char * ip_str);
+char * v3_inet_ntoa(uint32_t addr);
+uint16_t v3_htons(uint16_t s);
+uint16_t v3_ntohs(uint16_t s);
+uint32_t v3_htonl(uint32_t s);
+uint32_t v3_ntohl(uint32_t s);
+
+
+
 #endif
 
 
index b5498b2..15a30cd 100644 (file)
@@ -36,3 +36,178 @@ void V3_Init_Sockets(struct v3_socket_hooks * hooks) {
 
 
 
+uint32_t v3_inet_addr(const char * ip_str) {
+    uint32_t val;
+    int base, n, c;
+    uint32_t parts[4];
+    uint32_t * pp = parts;
+
+    c = *ip_str;
+    for (;;) {
+       /*
+        * Collect number up to ``.''.
+        * Values are specified as for C:
+        * 0x=hex, 0=octal, 1-9=decimal.
+        */
+       if (!isdigit(c)) {
+           return (0);
+       }
+
+       val = 0;
+       base = 10;
+
+       if (c == '0') {
+           c = *++ip_str;
+           if ((c == 'x') || (c == 'X')) {
+               base = 16;
+               c = *++ip_str;
+           } else {
+               base = 8;
+           }
+       }
+
+       for (;;) {
+           if (isdigit(c)) {
+               val = (val * base) + (int)(c - '0');
+               c = *++ip_str;
+           } else if ((base == 16) && (isxdigit(c))) {
+               val = (val << 4) | (int)(c + 10 - (islower(c) ? 'a' : 'A'));
+               c = *++ip_str;
+           } else {
+               break;
+           }
+       }
+
+       if (c == '.') {
+           /*
+            * Internet format:
+            *  a.b.c.d
+            *  a.b.c   (with c treated as 16 bits)
+            *  a.b (with b treated as 24 bits)
+            */
+           if (pp >= parts + 3) {
+               return 0;
+           }
+
+           *pp++ = val;
+           c = *++ip_str;
+       } else {
+           break;
+       }
+    }
+
+    /*
+     * Check for trailing characters.
+     */
+    if ( (c != '\0') && 
+        ( (!isprint(c)) || (!isspace(c)) ) ) {
+       return 0;
+    }
+
+    /*
+     * Concoct the address according to
+     * the number of parts specified.
+     */
+    n = pp - parts + 1;
+
+    switch (n) {
+       case 0:
+           return 0;       /* initial nondigit */
+
+       case 1:             /* a -- 32 bits */
+           break;
+
+       case 2:             /* a.b -- 8.24 bits */
+           if (val > 0xffffffUL) {
+               return 0;
+           }
+
+           val |= parts[0] << 24;
+           break;
+
+       case 3:             /* a.b.c -- 8.8.16 bits */
+           if (val > 0xffff) {
+               return 0;
+           }
+
+           val |= (parts[0] << 24) | (parts[1] << 16);
+           break;
+
+       case 4:             /* a.b.c.d -- 8.8.8.8 bits */
+           if (val > 0xff) {
+               return 0;
+           }
+
+           val |= (parts[0] << 24) | (parts[1] << 16) | (parts[2] << 8);
+           break;
+    }
+  
+    if (val) {
+       return v3_htonl(val);
+    }
+  
+    return -1;
+}
+
+
+char * v3_inet_ntoa(uint32_t addr) {
+    static char str[16];
+    char inv[3];
+    char * rp;
+    uint8_t * ap;
+    uint8_t rem;
+    uint8_t n;
+    uint8_t i;
+
+    rp = str;
+    ap = (uint8_t *)&addr;
+
+    for(n = 0; n < 4; n++) {
+       i = 0;
+
+       do {
+           rem = *ap % (uint8_t)10;
+
+           *ap /= (uint8_t)10;
+
+           inv[i++] = '0' + rem;
+       } while(*ap);
+
+       while(i--) {
+           *rp++ = inv[i];
+       }
+
+       *rp++ = '.';
+       ap++;
+    }
+
+    *--rp = 0;
+
+    return str;
+}
+
+
+
+
+
+uint16_t v3_htons(uint16_t n) {
+    return (((n & 0xff) << 8) | ((n & 0xff00) >> 8));
+}
+
+
+uint16_t v3_ntohs(uint16_t n) {
+    return v3_htons(n);
+}
+
+
+uint32_t v3_htonl(uint32_t n) {
+    return (((n & 0xff) << 24) |
+           ((n & 0xff00) << 8) |
+           ((n & 0xff0000UL) >> 8) |
+           ((n & 0xff000000UL) >> 24));
+}
+
+
+uint32_t v3_ntohl(uint32_t n) {
+  return v3_htonl(n);
+}