1 /* update-game-score.c --- Update a score file
3 Copyright (C) 2002-2011 Free Software Foundation, Inc.
5 Author: Colin Walters <walters@debian.org>
7 This file is part of GNU Emacs.
9 GNU Emacs is free software: you can redistribute it and/or modify
10 it under the terms of the GNU General Public License as published by
11 the Free Software Foundation, either version 3 of the License, or
12 (at your option) any later version.
14 GNU Emacs is distributed in the hope that it will be useful,
15 but WITHOUT ANY WARRANTY; without even the implied warranty of
16 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 GNU General Public License for more details.
19 You should have received a copy of the GNU General Public License
20 along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */
23 /* This program allows a game to securely and atomically update a
24 score file. It should be installed setuid, owned by an appropriate
27 Alternatively, it can be compiled without HAVE_SHARED_GAME_DIR
28 defined, and in that case it will store scores in the user's home
29 directory (it should NOT be setuid).
56 /* Needed for SunOS4, for instance. */
58 extern int optind
, opterr
;
60 static int usage (int err
) NO_RETURN
;
62 #define MAX_ATTEMPTS 5
63 #define MAX_SCORES 200
64 #define MAX_DATA_LEN 1024
67 /* OK on POSIX (time_t is arithmetic type) modulo overflow in subtraction. */
68 #define difftime(t1, t0) (double)((t1) - (t0))
74 fprintf (stdout
, "Usage: update-game-score [-m MAX ] [ -r ] game/scorefile SCORE DATA\n");
75 fprintf (stdout
, " update-game-score -h\n");
76 fprintf (stdout
, " -h\t\tDisplay this help.\n");
77 fprintf (stdout
, " -m MAX\t\tLimit the maximum number of scores to MAX.\n");
78 fprintf (stdout
, " -r\t\tSort the scores in increasing order.\n");
79 fprintf (stdout
, " -d DIR\t\tStore scores in DIR (only if not setuid).\n");
83 static int lock_file (const char *filename
, void **state
);
84 static int unlock_file (const char *filename
, void *state
);
93 static int read_scores (const char *filename
, struct score_entry
**scores
,
95 static int push_score (struct score_entry
**scores
, int *count
,
96 int newscore
, char *username
, char *newdata
);
97 static void sort_scores (struct score_entry
*scores
, int count
, int reverse
);
98 static int write_scores (const char *filename
,
99 const struct score_entry
*scores
, int count
);
101 static void lose (const char *msg
) NO_RETURN
;
104 lose (const char *msg
)
106 fprintf (stderr
, "%s\n", msg
);
110 static void lose_syserr (const char *msg
) NO_RETURN
;
112 /* Taken from sysdep.c. */
113 #ifndef HAVE_STRERROR
119 extern char *sys_errlist
[];
122 if (errnum
>= 0 && errnum
< sys_nerr
)
123 return sys_errlist
[errnum
];
124 return (char *) "Unknown error";
126 #endif /* not WINDOWSNT */
127 #endif /* ! HAVE_STRERROR */
130 lose_syserr (const char *msg
)
132 fprintf (stderr
, "%s: %s\n", msg
, strerror (errno
));
140 struct passwd
*buf
= getpwuid (getuid ());
144 int uid
= (int) getuid ();
148 name
= malloc (count
+1);
151 sprintf (name
, "%d", uid
);
158 get_prefix (int running_suid
, const char *user_prefix
)
160 if (!running_suid
&& user_prefix
== NULL
)
161 lose ("Not using a shared game directory, and no prefix given.");
164 #ifdef HAVE_SHARED_GAME_DIR
165 return HAVE_SHARED_GAME_DIR
;
167 lose ("This program was compiled without HAVE_SHARED_GAME_DIR,\n and should not be suid.");
174 main (int argc
, char **argv
)
178 char *user_id
, *scorefile
;
179 const char *prefix
, *user_prefix
= NULL
;
181 struct score_entry
*scores
;
182 int newscore
, scorecount
, reverse
= 0, max
= MAX_SCORES
;
187 while ((c
= getopt (argc
, argv
, "hrm:d:")) != -1)
191 usage (EXIT_SUCCESS
);
194 user_prefix
= optarg
;
201 if (max
> MAX_SCORES
)
205 usage (EXIT_FAILURE
);
208 if (optind
+3 != argc
)
209 usage (EXIT_FAILURE
);
211 running_suid
= (getuid () != geteuid ());
213 prefix
= get_prefix (running_suid
, user_prefix
);
215 scorefile
= malloc (strlen (prefix
) + strlen (argv
[optind
]) + 2);
217 lose_syserr ("Couldn't allocate score file");
219 strcpy (scorefile
, prefix
);
220 strcat (scorefile
, "/");
221 strcat (scorefile
, argv
[optind
]);
222 newscore
= atoi (argv
[optind
+1]);
223 newdata
= argv
[optind
+2];
224 if (strlen (newdata
) > MAX_DATA_LEN
)
225 newdata
[MAX_DATA_LEN
] = '\0';
227 user_id
= get_user_id ();
229 lose_syserr ("Couldn't determine user id");
231 if (stat (scorefile
, &buf
) < 0)
232 lose_syserr ("Failed to access scores file");
234 if (lock_file (scorefile
, &lockstate
) < 0)
235 lose_syserr ("Failed to lock scores file");
237 if (read_scores (scorefile
, &scores
, &scorecount
) < 0)
239 unlock_file (scorefile
, lockstate
);
240 lose_syserr ("Failed to read scores file");
242 push_score (&scores
, &scorecount
, newscore
, user_id
, newdata
);
243 sort_scores (scores
, scorecount
, reverse
);
244 /* Limit the number of scores. If we're using reverse sorting, then
245 also increment the beginning of the array, to skip over the
246 *smallest* scores. Otherwise, just decrementing the number of
247 scores suffices, since the smallest is at the end. */
248 if (scorecount
> MAX_SCORES
)
251 scores
+= (scorecount
- MAX_SCORES
);
252 scorecount
= MAX_SCORES
;
254 if (write_scores (scorefile
, scores
, scorecount
) < 0)
256 unlock_file (scorefile
, lockstate
);
257 lose_syserr ("Failed to write scores file");
259 unlock_file (scorefile
, lockstate
);
264 read_score (FILE *f
, struct score_entry
*score
)
269 while ((c
= getc (f
)) != EOF
273 score
->score
+= (c
-48);
275 while ((c
= getc (f
)) != EOF
284 if (getdelim (&score
->username
, &count
, ' ', f
) < 1
285 || score
->username
== NULL
)
288 score
->username
[strlen (score
->username
)-1] = '\0';
294 char *username
= malloc (unamelen
);
298 while ((c
= getc (f
)) != EOF
301 if (unameread
>= unamelen
-1)
302 if (!(username
= realloc (username
, unamelen
*= 2)))
304 username
[unameread
] = c
;
309 username
[unameread
] = '\0';
310 score
->username
= username
;
318 if (getline (&score
->data
, &len
, f
) < 0)
320 score
->data
[strlen (score
->data
)-1] = '\0';
326 char *buf
= malloc (len
);
329 while ((c
= getc (f
)) != EOF
334 if (!(buf
= realloc (buf
, len
*= 2)))
341 score
->data
[cur
] = '\0';
348 read_scores (const char *filename
, struct score_entry
**scores
, int *count
)
350 int readval
, scorecount
, cursize
;
351 struct score_entry
*ret
;
352 FILE *f
= fopen (filename
, "r");
357 ret
= (struct score_entry
*) malloc (sizeof (struct score_entry
) * cursize
);
360 while ((readval
= read_score (f
, &ret
[scorecount
])) == 0)
362 /* We encoutered an error */
366 if (scorecount
>= cursize
)
369 ret
= (struct score_entry
*)
370 realloc (ret
, (sizeof (struct score_entry
) * cursize
));
381 score_compare (const void *a
, const void *b
)
383 const struct score_entry
*sa
= (const struct score_entry
*) a
;
384 const struct score_entry
*sb
= (const struct score_entry
*) b
;
385 return (sb
->score
> sa
->score
) - (sb
->score
< sa
->score
);
389 score_compare_reverse (const void *a
, const void *b
)
391 const struct score_entry
*sa
= (const struct score_entry
*) a
;
392 const struct score_entry
*sb
= (const struct score_entry
*) b
;
393 return (sa
->score
> sb
->score
) - (sa
->score
< sb
->score
);
397 push_score (struct score_entry
**scores
, int *count
, int newscore
, char *username
, char *newdata
)
399 struct score_entry
*newscores
400 = (struct score_entry
*) realloc (*scores
,
401 sizeof (struct score_entry
) * ((*count
) + 1));
404 newscores
[*count
].score
= newscore
;
405 newscores
[*count
].username
= username
;
406 newscores
[*count
].data
= newdata
;
413 sort_scores (struct score_entry
*scores
, int count
, int reverse
)
415 qsort (scores
, count
, sizeof (struct score_entry
),
416 reverse
? score_compare_reverse
: score_compare
);
420 write_scores (const char *filename
, const struct score_entry
*scores
, int count
)
424 char *tempfile
= malloc (strlen (filename
) + strlen (".tempXXXXXX") + 1);
427 strcpy (tempfile
, filename
);
428 strcat (tempfile
, ".tempXXXXXX");
430 if (mkstemp (tempfile
) < 0
432 if (mktemp (tempfile
) != tempfile
434 || !(f
= fopen (tempfile
, "w")))
436 for (i
= 0; i
< count
; i
++)
437 if (fprintf (f
, "%ld %s %s\n", scores
[i
].score
, scores
[i
].username
,
441 if (rename (tempfile
, filename
) < 0)
443 if (chmod (filename
, 0644) < 0)
449 lock_file (const char *filename
, void **state
)
454 const char *lockext
= ".lockfile";
455 char *lockpath
= malloc (strlen (filename
) + strlen (lockext
) + 60);
458 strcpy (lockpath
, filename
);
459 strcat (lockpath
, lockext
);
463 /* If the lock is over an hour old, delete it. */
464 if (stat (lockpath
, &buf
) == 0
465 && (difftime (buf
.st_ctime
, time (NULL
) > 60*60)))
467 fd
= open (lockpath
, O_CREAT
| O_EXCL
, 0600);
472 /* Break the lock; we won't corrupt the file, but we might
474 if (attempts
> MAX_ATTEMPTS
)
479 sleep ((rand () % 2)+1);
490 unlock_file (const char *filename
, void *state
)
492 char *lockpath
= (char *) state
;
493 int ret
= unlink (lockpath
);
494 int saved_errno
= errno
;
501 /* update-game-score.c ends here */