]> git.cameronkatri.com Git - bsdgames-darwin.git/blobdiff - sail/sync.c
Don't cast the return value of calloc().
[bsdgames-darwin.git] / sail / sync.c
index 16714ff1908357d440c9ac7ec6923df0142eb874..e5277ca6b6db2b4e5b895431b5edd2b0458b6e7a 100644 (file)
@@ -1,4 +1,4 @@
-/*     $NetBSD: sync.c,v 1.15 2001/01/01 21:57:38 jwise Exp $  */
+/*     $NetBSD: sync.c,v 1.28 2009/03/14 19:35:13 dholland Exp $       */
 
 /*
  * Copyright (c) 1983, 1993
  * 2. Redistributions in binary form must reproduce the above copyright
  *    notice, this list of conditions and the following disclaimer in the
  *    documentation and/or other materials provided with the distribution.
- * 3. All advertising materials mentioning features or use of this software
- *    must display the following acknowledgement:
- *     This product includes software developed by the University of
- *     California, Berkeley and its contributors.
- * 4. Neither the name of the University nor the names of its contributors
+ * 3. Neither the name of the University nor the names of its contributors
  *    may be used to endorse or promote products derived from this software
  *    without specific prior written permission.
  *
 #if 0
 static char sccsid[] = "@(#)sync.c     8.2 (Berkeley) 4/28/95";
 #else
-__RCSID("$NetBSD: sync.c,v 1.15 2001/01/01 21:57:38 jwise Exp $");
+__RCSID("$NetBSD: sync.c,v 1.28 2009/03/14 19:35:13 dholland Exp $");
 #endif
 #endif /* not lint */
 
+#include <sys/stat.h>
+
 #include <fcntl.h>
 #include <errno.h>
-#ifdef __STDC__
+#include <signal.h>
 #include <stdarg.h>
-#else
-#include <varargs.h>
-#endif
+#include <stdio.h>
 #include <stdlib.h>
-#include <unistd.h>
-#include <sys/types.h>
-#include <sys/stat.h>
+#include <string.h>
 #include <time.h>
+#include <unistd.h>
 #include "extern.h"
 #include "pathnames.h"
 
 #define BUFSIZE 4096
 
+static int sync_update(int, struct ship *, const char *,
+                      long, long, long, long);
+
 static const char SF[] = _PATH_SYNC;
 static const char LF[] = _PATH_LOCK;
 static char sync_buf[BUFSIZE];
@@ -102,7 +100,7 @@ makesignal(struct ship *from, const char *fmt, struct ship *ship, ...)
 
        va_start(ap, ship);
        fmtship(format, sizeof(format), fmt, ship);
-       vsprintf(message, format, ap);
+       vsnprintf(message, sizeof(message), format, ap);
        va_end(ap);
        Writestr(W_SIGNAL, from, message);
 }
@@ -115,19 +113,19 @@ makemsg(struct ship *from, const char *fmt, ...)
        va_list ap;
 
        va_start(ap, fmt);
-       vsprintf(message, fmt, ap);
+       vsnprintf(message, sizeof(message), fmt, ap);
        va_end(ap);
        Writestr(W_SIGNAL, from, message);
 }
 
 int
-sync_exists(int game)
+sync_exists(int gamenum)
 {
        char buf[sizeof sync_file];
        struct stat s;
        time_t t;
 
-       sprintf(buf, SF, game);
+       snprintf(buf, sizeof(buf), SF, gamenum);
        time(&t);
        setegid(egid);
        if (stat(buf, &s) < 0) {
@@ -136,7 +134,7 @@ sync_exists(int game)
        }
        if (s.st_mtime < t - 60*60*2) {         /* 2 hours */
                unlink(buf);
-               sprintf(buf, LF, game);
+               snprintf(buf, sizeof(buf), LF, gamenum);
                unlink(buf);
                setegid(gid);
                return 0;
@@ -152,8 +150,8 @@ sync_open(void)
        struct stat tmp;
        if (sync_fp != NULL)
                fclose(sync_fp);
-       sprintf(sync_lock, LF, game);
-       sprintf(sync_file, SF, game);
+       snprintf(sync_lock, sizeof(sync_lock), LF, game);
+       snprintf(sync_file, sizeof(sync_file), SF, game);
        setegid(egid);
        if (stat(sync_file, &tmp) < 0) {
                mode_t omask = umask(002);
@@ -169,11 +167,11 @@ sync_open(void)
 }
 
 void
-sync_close(int remove)
+sync_close(int doremove)
 {
        if (sync_fp != 0)
                fclose(sync_fp);
-       if (remove) {
+       if (doremove) {
                setegid(egid);
                unlink(sync_file);
                setegid(gid);
@@ -183,8 +181,9 @@ sync_close(int remove)
 void
 Write(int type, struct ship *ship, long a, long b, long c, long d)
 {
+       size_t max = sizeof(sync_buf) - (sync_bp - sync_buf);
 
-       sprintf(sync_bp, "%d %d 0 %ld %ld %ld %ld\n",
+       snprintf(sync_bp, max, "%d %d 0 %ld %ld %ld %ld\n",
                       type, ship->file->index, a, b, c, d);
        while (*sync_bp++)
                ;
@@ -197,7 +196,9 @@ Write(int type, struct ship *ship, long a, long b, long c, long d)
 void
 Writestr(int type, struct ship *ship, const char *a)
 {
-       sprintf(sync_bp, "%d %d 1 %s\n", type, ship->file->index, a);
+       size_t max = sizeof(sync_buf) - (sync_bp - sync_buf);
+
+       snprintf(sync_bp, max, "%d %d 1 %s\n", type, ship->file->index, a);
        while (*sync_bp++)
                ;
        sync_bp--;
@@ -254,9 +255,13 @@ Sync(void)
                if (isstr != 0 && isstr != 1)
                        goto bad;
                if (isstr) {
+                       int ch;
                        char *p;
+
                        for (p = buf;;) {
-                               switch (*p++ = getc(sync_fp)) {
+                               ch = getc(sync_fp);
+                               *p++ = ch;
+                               switch (ch) {
                                case '\n':
                                        p--;
                                case EOF:
@@ -274,7 +279,8 @@ Sync(void)
                        astr = p;
                        a = b = c = d = 0;
                } else {
-                       if (fscanf(sync_fp, "%ld%ld%ld%ld", &a, &b, &c, &d) != 4)
+                       if (fscanf(sync_fp, "%ld%ld%ld%ld", &a, &b, &c, &d)
+                           != 4)
                                goto bad;
                        astr = NULL;
                }
@@ -304,8 +310,9 @@ out:
        return erred ? -1 : 0;
 }
 
-int
-sync_update(int type, struct ship *ship, const char *astr, long a, long b, long c, long d)
+static int
+sync_update(int type, struct ship *ship, const char *astr,
+           long a, long b, long c, long d)
 {
        switch (type) {
        case W_DBP: {
@@ -382,9 +389,8 @@ sync_update(int type, struct ship *ship, const char *astr, long a, long b, long
                break;
                }
        case W_CAPTAIN:
-               strncpy(ship->file->captain, astr,
-                       sizeof ship->file->captain - 1);
-               ship->file->captain[sizeof ship->file->captain - 1] = 0;
+               strlcpy(ship->file->captain, astr,
+                       sizeof ship->file->captain);
                break;
        case W_CAPTURED:
                if (a < 0)
@@ -421,9 +427,8 @@ sync_update(int type, struct ship *ship, const char *astr, long a, long b, long
                ship->specs->hull = a;
                break;
        case W_MOVE:
-               strncpy(ship->file->movebuf, astr,
-                       sizeof ship->file->movebuf - 1);
-               ship->file->movebuf[sizeof ship->file->movebuf - 1] = 0;
+               strlcpy(ship->file->movebuf, astr,
+                       sizeof ship->file->movebuf);
                break;
        case W_PCREW:
                ship->file->pcrew = a;