]> git.cameronkatri.com Git - bsdgames-darwin.git/commitdiff
Remove SHORTLEN and LONGLEN defines; use sizeof() properly instead.
authordholland <dholland@NetBSD.org>
Sun, 30 Mar 2014 05:30:28 +0000 (05:30 +0000)
committerdholland <dholland@NetBSD.org>
Sun, 30 Mar 2014 05:30:28 +0000 (05:30 +0000)
Fix two semi-compensating size bugs in wire transmission affecting
64-bit machines.

hunt/hunt/connect.c
hunt/hunt/hunt.c
hunt/hunt/hunt_private.h
hunt/hunt/playit.c
hunt/huntd/answer.c
hunt/huntd/hunt.h
hunt/include/hunt_common.h

index 71729c02d3f00fc186027a0685bcf5d841a521fd..4c2e2f7e0f390ab63f099f2108269674cdc83942 100644 (file)
@@ -1,4 +1,4 @@
-/*     $NetBSD: connect.c,v 1.10 2014/03/30 05:14:47 dholland Exp $    */
+/*     $NetBSD: connect.c,v 1.11 2014/03/30 05:30:28 dholland Exp $    */
 /*
  * Copyright (c) 1983-2003, Regents of the University of California.
  * All rights reserved.
 
 #include <sys/cdefs.h>
 #ifndef lint
-__RCSID("$NetBSD: connect.c,v 1.10 2014/03/30 05:14:47 dholland Exp $");
+__RCSID("$NetBSD: connect.c,v 1.11 2014/03/30 05:30:28 dholland Exp $");
 #endif /* not lint */
 
 #include <string.h>
 #include <signal.h>
 #include <unistd.h>
+#include <assert.h>
 
 #include "hunt_common.h"
 #include "hunt_private.h"
 
 void
-do_connect(char *name, char team, long enter_status)
+do_connect(const char *name, size_t namelen, char team, int enter_status)
 {
        static int32_t uid;
-       static int32_t mode;
+       int32_t mode;
+       int32_t wire_status = htonl(enter_status);
 
        if (uid == 0)
                uid = htonl(getuid());
-       (void) write(huntsocket, &uid, LONGLEN);
-       (void) write(huntsocket, name, NAMELEN);
+       (void) write(huntsocket, &uid, sizeof(uid));
+       assert(namelen == WIRE_NAMELEN);
+       (void) write(huntsocket, name, namelen);
        (void) write(huntsocket, &team, 1);
-       enter_status = htonl(enter_status);
-       (void) write(huntsocket, &enter_status, LONGLEN);
+       (void) write(huntsocket, &wire_status, sizeof(wire_status));
        (void) strcpy(Buf, ttyname(fileno(stderr)));
-       (void) write(huntsocket, Buf, NAMELEN);
+       (void) write(huntsocket, Buf, WIRE_NAMELEN);
 #ifdef INTERNET
        if (Send_message != NULL)
                mode = C_MESSAGE;
index 4621543b5b767abb721fa478359445a35ab9d89b..9396d3f44ddeb01a6981c4b21c25e3096e1dc37d 100644 (file)
@@ -1,4 +1,4 @@
-/*     $NetBSD: hunt.c,v 1.54 2014/03/30 05:14:47 dholland Exp $       */
+/*     $NetBSD: hunt.c,v 1.55 2014/03/30 05:30:28 dholland Exp $       */
 /*
  * Copyright (c) 1983-2003, Regents of the University of California.
  * All rights reserved.
@@ -32,7 +32,7 @@
 
 #include <sys/cdefs.h>
 #ifndef lint
-__RCSID("$NetBSD: hunt.c,v 1.54 2014/03/30 05:14:47 dholland Exp $");
+__RCSID("$NetBSD: hunt.c,v 1.55 2014/03/30 05:30:28 dholland Exp $");
 #endif /* not lint */
 
 #include <sys/param.h>
@@ -94,7 +94,7 @@ SOCKET Daemon;
 char map_key[256];                     /* what to map keys to */
 bool no_beep;
 
-static char name[NAMELEN];
+static char name[WIRE_NAMELEN];
 static char team = ' ';
 
 static int in_visual;
@@ -102,7 +102,7 @@ static int in_visual;
 extern int cur_row, cur_col;
 
 static void dump_scores(const struct sockaddr_storage *, socklen_t);
-static long env_init(long);
+static int env_init(int);
 static void fill_in_blanks(void);
 static void fincurs(void);
 static void rmnl(char *);
@@ -138,16 +138,16 @@ main(int ac, char **av)
 {
        char *term;
        int c;
-       long enter_status;
+       int enter_status;
        bool Query_driver = false;
        bool Show_scores = false;
 
-       enter_status = env_init((long) Q_CLOAK);
+       enter_status = env_init(Q_CLOAK);
        while ((c = getopt(ac, av, "Sbcfh:l:mn:op:qst:w:")) != -1) {
                switch (c) {
                case 'l':       /* rsh compatibility */
                case 'n':
-                       (void) strncpy(name, optarg, NAMELEN);
+                       (void) strncpy(name, optarg, sizeof(name));
                        break;
                case 't':
                        team = *optarg;
@@ -268,7 +268,7 @@ main(int ac, char **av)
 #endif
 #ifdef OTTO
        if (Otto_mode)
-               (void) strncpy(name, "otto", NAMELEN);
+               (void) strncpy(name, "otto", sizeof(name));
        else
 #endif
        fill_in_blanks();
@@ -350,7 +350,7 @@ main(int ac, char **av)
                }
 #endif
 
-               do_connect(name, team, enter_status);
+               do_connect(name, sizeof(name), team, enter_status);
 #ifdef INTERNET
                if (Send_message != NULL) {
                        do_message();
@@ -658,8 +658,8 @@ leavex(int exitval, const char *fmt, ...)
        va_end(ap);
 }
 
-static long
-env_init(long enter_status)
+static int
+env_init(int enter_status)
 {
        int i;
        char *envp, *envname, *s;
@@ -690,11 +690,11 @@ env_init(long enter_status)
                                envname = s + 1;
                                if ((s = strchr(envp, ',')) == NULL) {
                                        *envp = '\0';
-                                       strncpy(name, envname, NAMELEN);
+                                       strncpy(name, envname, sizeof(name));
                                        break;
                                }
                                *s = '\0';
-                               strncpy(name, envname, NAMELEN);
+                               strncpy(name, envname, sizeof(name));
                                envp = s + 1;
                        }
 #ifdef INTERNET
@@ -759,7 +759,7 @@ env_init(long enter_status)
                }
                if (*envp != '\0') {
                        if (envname == NULL)
-                               strncpy(name, envp, NAMELEN);
+                               strncpy(name, envp, sizeof(name));
                        else
                                printf("unknown option %s\n", envp);
                }
@@ -782,7 +782,7 @@ again:
                        putchar('\n');
        } else {
                printf("Enter your code name: ");
-               if (fgets(name, NAMELEN, stdin) == NULL)
+               if (fgets(name, sizeof(name), stdin) == NULL)
                        exit(1);
        }
        rmnl(name);
index 65c15e0e7e6b6025ce22e053f63e8a0cc5efa975..f4402b5717dce3125fcf386ca7786f24fa336fe7 100644 (file)
@@ -1,4 +1,4 @@
-/*     $NetBSD: hunt_private.h,v 1.8 2014/03/30 05:14:47 dholland Exp $        */
+/*     $NetBSD: hunt_private.h,v 1.9 2014/03/30 05:30:28 dholland Exp $        */
 
 /*
  * Copyright (c) 1983-2003, Regents of the University of California.
@@ -73,7 +73,7 @@ extern SOCKET Daemon;
  */
 
 /* in connect.c */
-void do_connect(char *, char, long);
+void do_connect(const char *, size_t, char, int32_t);
 
 /* in hunt.c */
 __dead void bad_con(void);
index 16978bfa24dbd83fec0c69822f354ba611afd5d8..63da5658ab2096f22d62af252239e58cd33a2bf4 100644 (file)
@@ -1,4 +1,4 @@
-/*     $NetBSD: playit.c,v 1.20 2014/03/30 05:14:47 dholland Exp $     */
+/*     $NetBSD: playit.c,v 1.21 2014/03/30 05:30:28 dholland Exp $     */
 /*
  * Copyright (c) 1983-2003, Regents of the University of California.
  * All rights reserved.
@@ -32,7 +32,7 @@
 
 #include <sys/cdefs.h>
 #ifndef lint
-__RCSID("$NetBSD: playit.c,v 1.20 2014/03/30 05:14:47 dholland Exp $");
+__RCSID("$NetBSD: playit.c,v 1.21 2014/03/30 05:30:28 dholland Exp $");
 #endif /* not lint */
 
 #include <sys/file.h>
@@ -93,8 +93,10 @@ playit(void)
        int ch;
        int y, x;
        uint32_t version;
+       ssize_t result;
 
-       if (read(huntsocket, &version, LONGLEN) != LONGLEN) {
+       result = read(huntsocket, &version, sizeof(version));
+       if (result != (ssize_t)sizeof(version)) {
                bad_con();
                /* NOTREACHED */
        }
@@ -435,8 +437,10 @@ void
 do_message(void)
 {
        uint32_t version;
+       ssize_t result;
 
-       if (read(huntsocket, &version, LONGLEN) != LONGLEN) {
+       result = read(huntsocket, &version, sizeof(version));
+       if (result != (ssize_t)sizeof(version)) {
                bad_con();
                /* NOTREACHED */
        }
index 5f42abe44e0284e5013e5ab8ffde9cd329175e82..183521b590646d53d1344747f46b830a20483552 100644 (file)
@@ -1,4 +1,4 @@
-/*     $NetBSD: answer.c,v 1.21 2014/03/30 01:44:37 dholland Exp $     */
+/*     $NetBSD: answer.c,v 1.22 2014/03/30 05:30:28 dholland Exp $     */
 /*
  * Copyright (c) 1983-2003, Regents of the University of California.
  * All rights reserved.
@@ -32,7 +32,7 @@
 
 #include <sys/cdefs.h>
 #ifndef lint
-__RCSID("$NetBSD: answer.c,v 1.21 2014/03/30 01:44:37 dholland Exp $");
+__RCSID("$NetBSD: answer.c,v 1.22 2014/03/30 05:30:28 dholland Exp $");
 #endif /* not lint */
 
 #include <sys/types.h>
@@ -48,9 +48,9 @@ __RCSID("$NetBSD: answer.c,v 1.21 2014/03/30 01:44:37 dholland Exp $");
 
 #define SCOREDECAY     15
 
-static char Ttyname[NAMELEN];
+static char Ttyname[WIRE_NAMELEN];
 
-static IDENT *get_ident(uint32_t, uint32_t, char *, char);
+static IDENT *get_ident(uint32_t, uint32_t, const char *, char);
 static void stmonitor(PLAYER *);
 static void stplayer(PLAYER *, int);
 
@@ -59,10 +59,10 @@ answer(void)
 {
        PLAYER *pp;
        int newsock;
-       static u_long mode;
-       static char name[NAMELEN];
+       static uint32_t mode;
+       static char name[WIRE_NAMELEN];
        static char team;
-       static int enter_status;
+       static int32_t enter_status;
        static socklen_t socklen;
        static uint32_t machine;
        static uint32_t uid;
@@ -109,15 +109,15 @@ answer(void)
        }
 
        version = htonl((uint32_t) HUNT_VERSION);
-       (void) write(newsock, &version, LONGLEN);
-       (void) read(newsock, &uid, LONGLEN);
+       (void) write(newsock, &version, sizeof(version));
+       (void) read(newsock, &uid, sizeof(uid));
        uid = ntohl(uid);
-       (void) read(newsock, name, NAMELEN);
+       (void) read(newsock, name, sizeof(name));
        (void) read(newsock, &team, 1);
-       (void) read(newsock, &enter_status, LONGLEN);
-       enter_status = ntohl((unsigned long) enter_status);
-       (void) read(newsock, Ttyname, NAMELEN);
-       (void) read(newsock, &mode, sizeof mode);
+       (void) read(newsock, &enter_status, sizeof(enter_status));
+       enter_status = ntohl(enter_status);
+       (void) read(newsock, Ttyname, sizeof(Ttyname));
+       (void) read(newsock, &mode, sizeof(mode));
        mode = ntohl(mode);
 
        /*
@@ -398,7 +398,7 @@ rand_dir(void)
  *     Get the score structure of a player
  */
 static IDENT *
-get_ident(uint32_t machine, uint32_t uid, char *name, char team)
+get_ident(uint32_t machine, uint32_t uid, const char *name, char team)
 {
        IDENT *ip;
        static IDENT punt;
@@ -407,7 +407,7 @@ get_ident(uint32_t machine, uint32_t uid, char *name, char team)
                if (ip->i_machine == machine
                &&  ip->i_uid == uid
                &&  ip->i_team == team
-               &&  strncmp(ip->i_name, name, NAMELEN) == 0)
+               &&  strncmp(ip->i_name, name, WIRE_NAMELEN) == 0)
                        break;
 
        if (ip != NULL) {
@@ -427,7 +427,7 @@ get_ident(uint32_t machine, uint32_t uid, char *name, char team)
                ip->i_machine = machine;
                ip->i_team = team;
                ip->i_uid = uid;
-               strncpy(ip->i_name, name, NAMELEN);
+               strncpy(ip->i_name, name, sizeof(ip->i_name));
                ip->i_kills = 0;
                ip->i_entries = 1;
                ip->i_score = 0;
index daff100bc05ceb06549b1485a7ab19c581fd1c04..82605662bbbdf42a937408291bd6e1cc1cb4e107 100644 (file)
@@ -1,4 +1,4 @@
-/*     $NetBSD: hunt.h,v 1.29 2014/03/30 01:44:37 dholland Exp $       */
+/*     $NetBSD: hunt.h,v 1.30 2014/03/30 05:30:28 dholland Exp $       */
 
 /*
  * Copyright (c) 1983-2003, Regents of the University of California.
@@ -56,7 +56,7 @@ typedef struct ident_def      IDENT;
 typedef struct regen_def       REGEN;
 
 struct ident_def {
-       char i_name[NAMELEN];
+       char i_name[WIRE_NAMELEN];
        char i_team;
        uint32_t i_machine;
        uint32_t i_uid;
index a463cf1625c32910cbadecd489dc0040e4dad82d..704124c926b1d1969ddf9b847b73746fbc002547 100644 (file)
@@ -1,4 +1,4 @@
-/*     $NetBSD: hunt_common.h,v 1.3 2014/03/29 21:55:59 dholland Exp $ */
+/*     $NetBSD: hunt_common.h,v 1.4 2014/03/30 05:30:28 dholland Exp $ */
 
 /*
  * Copyright (c) 1983-2003, Regents of the University of California.
@@ -85,9 +85,7 @@
 #define MAXPL          17
 #define MAXMON         0
 #endif
-#define SHORTLEN       2               /* sizeof (network short) */
-#define LONGLEN                4               /* sizeof (network long) */
-#define NAMELEN                20
+#define WIRE_NAMELEN   20
 #define MSGLEN         SCREEN_WIDTH
 #define DECAY          50.0