uuidd: coding style fixes

Few unnecessary void casts removed, rest is about spacing.

Signed-off-by: Sami Kerola <kerolasa@iki.fi>
This commit is contained in:
Sami Kerola 2011-06-25 15:13:24 +02:00
parent 2fb35353fd
commit f7c297b839
1 changed files with 25 additions and 22 deletions

View File

@ -74,7 +74,7 @@ static void create_daemon(void)
{ {
uid_t euid; uid_t euid;
if (daemon(0,0)) if (daemon(0, 0))
err(EXIT_FAILURE, "daemon"); err(EXIT_FAILURE, "daemon");
euid = geteuid(); euid = geteuid();
@ -110,9 +110,9 @@ static const char *cleanup_pidfile, *cleanup_socket;
static void terminate_intr(int signo CODE_ATTR((unused))) static void terminate_intr(int signo CODE_ATTR((unused)))
{ {
(void) unlink(cleanup_pidfile); unlink(cleanup_pidfile);
if (cleanup_socket) if (cleanup_socket)
(void) unlink(cleanup_socket); unlink(cleanup_socket);
exit(EXIT_SUCCESS); exit(EXIT_SUCCESS);
} }
@ -142,7 +142,7 @@ static int call_daemon(const char *socket_path, int op, char *buf,
srv_addr.sun_family = AF_UNIX; srv_addr.sun_family = AF_UNIX;
strncpy(srv_addr.sun_path, socket_path, sizeof(srv_addr.sun_path)); strncpy(srv_addr.sun_path, socket_path, sizeof(srv_addr.sun_path));
srv_addr.sun_path[sizeof(srv_addr.sun_path)-1] = '\0'; srv_addr.sun_path[sizeof(srv_addr.sun_path) - 1] = '\0';
if (connect(s, (const struct sockaddr *) &srv_addr, if (connect(s, (const struct sockaddr *) &srv_addr,
sizeof(struct sockaddr_un)) < 0) { sizeof(struct sockaddr_un)) < 0) {
@ -153,14 +153,14 @@ static int call_daemon(const char *socket_path, int op, char *buf,
} }
if (op == UUIDD_OP_BULK_RANDOM_UUID) { if (op == UUIDD_OP_BULK_RANDOM_UUID) {
if ((*num)*UUID_LEN > buflen-4) if ((*num) * UUID_LEN > buflen - 4)
*num = (buflen-4) / UUID_LEN; *num = (buflen - 4) / UUID_LEN;
} }
op_buf[0] = op; op_buf[0] = op;
op_len = 1; op_len = 1;
if ((op == UUIDD_OP_BULK_TIME_UUID) || if ((op == UUIDD_OP_BULK_TIME_UUID) ||
(op == UUIDD_OP_BULK_RANDOM_UUID)) { (op == UUIDD_OP_BULK_RANDOM_UUID)) {
memcpy(op_buf+1, num, sizeof(int)); memcpy(op_buf + 1, num, sizeof(int));
op_len += sizeof(int); op_len += sizeof(int);
} }
@ -274,8 +274,8 @@ static void server_loop(const char *socket_path, const char *pidfile_path,
*/ */
my_addr.sun_family = AF_UNIX; my_addr.sun_family = AF_UNIX;
strncpy(my_addr.sun_path, socket_path, sizeof(my_addr.sun_path)); strncpy(my_addr.sun_path, socket_path, sizeof(my_addr.sun_path));
my_addr.sun_path[sizeof(my_addr.sun_path)-1] = '\0'; my_addr.sun_path[sizeof(my_addr.sun_path) - 1] = '\0';
(void) unlink(socket_path); unlink(socket_path);
save_umask = umask(0); save_umask = umask(0);
if (bind(s, (const struct sockaddr *) &my_addr, if (bind(s, (const struct sockaddr *) &my_addr,
sizeof(struct sockaddr_un)) < 0) { sizeof(struct sockaddr_un)) < 0) {
@ -285,7 +285,7 @@ static void server_loop(const char *socket_path, const char *pidfile_path,
socket_path, strerror(errno)); socket_path, strerror(errno));
exit(EXIT_FAILURE); exit(EXIT_FAILURE);
} }
(void) umask(save_umask); umask(save_umask);
if (listen(s, SOMAXCONN) < 0) { if (listen(s, SOMAXCONN) < 0) {
if (!quiet) if (!quiet)
@ -305,7 +305,9 @@ static void server_loop(const char *socket_path, const char *pidfile_path,
signal(SIGPIPE, SIG_IGN); signal(SIGPIPE, SIG_IGN);
sprintf(reply_buf, "%8d\n", getpid()); sprintf(reply_buf, "%8d\n", getpid());
if (ftruncate(fd_pidfile, 0)) {} /* Silence warn_unused_result */ if (ftruncate(fd_pidfile, 0)) {
/* Silence warn_unused_result */
}
write_all(fd_pidfile, reply_buf, strlen(reply_buf)); write_all(fd_pidfile, reply_buf, strlen(reply_buf));
if (fd_pidfile > 1) if (fd_pidfile > 1)
close(fd_pidfile); /* Unlock the pid file */ close(fd_pidfile); /* Unlock the pid file */
@ -341,14 +343,14 @@ static void server_loop(const char *socket_path, const char *pidfile_path,
} else if (debug) } else if (debug)
printf(_("operation %d\n"), op); printf(_("operation %d\n"), op);
switch(op) { switch (op) {
case UUIDD_OP_GETPID: case UUIDD_OP_GETPID:
sprintf(reply_buf, "%d", getpid()); sprintf(reply_buf, "%d", getpid());
reply_len = strlen(reply_buf)+1; reply_len = strlen(reply_buf) + 1;
break; break;
case UUIDD_OP_GET_MAXOP: case UUIDD_OP_GET_MAXOP:
sprintf(reply_buf, "%d", UUIDD_MAX_OP); sprintf(reply_buf, "%d", UUIDD_MAX_OP);
reply_len = strlen(reply_buf)+1; reply_len = strlen(reply_buf) + 1;
break; break;
case UUIDD_OP_TIME_UUID: case UUIDD_OP_TIME_UUID:
num = 1; num = 1;
@ -379,7 +381,7 @@ static void server_loop(const char *socket_path, const char *pidfile_path,
} }
memcpy(reply_buf, uu, sizeof(uu)); memcpy(reply_buf, uu, sizeof(uu));
reply_len = sizeof(uu); reply_len = sizeof(uu);
memcpy(reply_buf+reply_len, &num, sizeof(num)); memcpy(reply_buf + reply_len, &num, sizeof(num));
reply_len += sizeof(num); reply_len += sizeof(num);
break; break;
case UUIDD_OP_BULK_RANDOM_UUID: case UUIDD_OP_BULK_RANDOM_UUID:
@ -387,14 +389,15 @@ static void server_loop(const char *socket_path, const char *pidfile_path,
num = 1; num = 1;
if (num > 1000) if (num > 1000)
num = 1000; num = 1000;
if (num * UUID_LEN > (int) (sizeof(reply_buf)-sizeof(num))) if (num * UUID_LEN > (int) (sizeof(reply_buf) - sizeof(num)))
num = (sizeof(reply_buf)-sizeof(num)) / UUID_LEN; num = (sizeof(reply_buf) - sizeof(num)) / UUID_LEN;
__uuid_generate_random((unsigned char *) reply_buf + __uuid_generate_random((unsigned char *) reply_buf +
sizeof(num), &num); sizeof(num), &num);
if (debug) { if (debug) {
printf(_("Generated %d UUIDs:\n"), num); printf(_("Generated %d UUIDs:\n"), num);
for (i=0, cp=reply_buf+sizeof(num); for (i = 0, cp = reply_buf + sizeof(num);
i < num; i++, cp+=UUID_LEN) { i < num;
i++, cp += UUID_LEN) {
uuid_unparse((unsigned char *)cp, str); uuid_unparse((unsigned char *)cp, str);
printf("\t%s\n", str); printf("\t%s\n", str);
} }
@ -527,7 +530,7 @@ int main(int argc, char **argv)
#endif #endif
} }
if (num && do_type) { if (num && do_type) {
ret = call_daemon(socket_path, do_type+2, buf, ret = call_daemon(socket_path, do_type + 2, buf,
sizeof(buf), &num, &err_context); sizeof(buf), &num, &err_context);
if (ret < 0) { if (ret < 0) {
printf(_("Error calling uuidd daemon (%s): %s\n"), printf(_("Error calling uuidd daemon (%s): %s\n"),
@ -544,9 +547,9 @@ int main(int argc, char **argv)
} else { } else {
printf(_("List of UUIDs:\n")); printf(_("List of UUIDs:\n"));
cp = buf + 4; cp = buf + 4;
if (ret != (int) (sizeof(num) + num*sizeof(uu))) if (ret != (int) (sizeof(num) + num * sizeof(uu)))
unexpected_size(ret); unexpected_size(ret);
for (i=0; i < num; i++, cp+=UUID_LEN) { for (i = 0; i < num; i++, cp += UUID_LEN) {
uuid_unparse((unsigned char *) cp, str); uuid_unparse((unsigned char *) cp, str);
printf("\t%s\n", str); printf("\t%s\n", str);
} }