summaryrefslogtreecommitdiff
path: root/libfshelp
diff options
context:
space:
mode:
authorRoland McGrath <roland@gnu.org>2004-02-11 07:54:23 +0000
committerRoland McGrath <roland@gnu.org>2004-02-11 07:54:23 +0000
commit04e20616306fbe066a1e33cf5d08978d69f2f263 (patch)
tree8886d3cf6c4cfe7744bfcd475214961e17fa86b7 /libfshelp
parent8fca7982060716733aca9527bd8d8ea1d7d0618e (diff)
2004-02-10 Roland McGrath <roland@frob.com>
* start-translator-long.c (service_fsys_startup): Move mach_msg_type_t const variables inside the function, make them auto so they are optimized away to integer constants. Use a union instead of casts to do efficient type checking.
Diffstat (limited to 'libfshelp')
-rw-r--r--libfshelp/start-translator-long.c114
1 files changed, 63 insertions, 51 deletions
diff --git a/libfshelp/start-translator-long.c b/libfshelp/start-translator-long.c
index 6c966fc1..5bf14541 100644
--- a/libfshelp/start-translator-long.c
+++ b/libfshelp/start-translator-long.c
@@ -1,5 +1,5 @@
/*
- Copyright (C) 1995,96,99,2000,02 Free Software Foundation, Inc.
+ Copyright (C) 1995,96,99,2000,02, 04 Free Software Foundation, Inc.
Written by Miles Bader and Michael I. Bushnell.
This file is part of the GNU Hurd.
@@ -48,49 +48,6 @@ struct fsys_startup_reply
mach_port_t realnode;
};
-static const mach_msg_type_t flagsCheck = {
- MACH_MSG_TYPE_INTEGER_32, /* msgt_name = */
- 32, /* msgt_size = */
- 1, /* msgt_number = */
- TRUE, /* msgt_inline = */
- FALSE, /* msgt_longform = */
- FALSE, /* msgt_deallocate = */
- 0 /* msgt_unused = */
-};
-
-static const mach_msg_type_t control_portCheck =
-{
- 17, /* msgt_name = */
- 32, /* msgt_size = */
- 1, /* msgt_number = */
- TRUE, /* msgt_inline = */
- FALSE, /* msgt_longform = */
- FALSE, /* msgt_deallocate = */
- 0 /* msgt_unused = */
-};
-
-static const mach_msg_type_t RetCodeType = {
- MACH_MSG_TYPE_INTEGER_32, /* msgt_name = */
- 32, /* msgt_size = */
- 1, /* msgt_number = */
- TRUE, /* msgt_inline = */
- FALSE, /* msgt_longform = */
- FALSE, /* msgt_deallocate = */
- 0 /* msgt_unused = */
-};
-
-static const mach_msg_type_t realnodeType =
-{
- -1, /* msgt_name = */
- 32, /* msgt_size = */
- 1, /* msgt_number = */
- TRUE, /* msgt_inline = */
- FALSE, /* msgt_longform = */
- FALSE, /* msgt_deallocate = */
- 0 /* msgt_unused = */
-};
-
-
/* Wait around for an fsys_startup message on the port PORT from the
translator on NODE (timing out after TIMEOUT milliseconds), and return a
send right for the resulting fsys control port in CONTROL. If a no-senders
@@ -102,12 +59,68 @@ service_fsys_startup (fshelp_open_fn_t underlying_open_fn, void *cookie,
mach_port_t port, long timeout, fsys_t *control,
task_t task)
{
- error_t err;
- union
+ /* These should be optimized away to pure integer constants. */
+ const mach_msg_type_t flagsCheck =
+ {
+ MACH_MSG_TYPE_INTEGER_32, /* msgt_name = */
+ 32, /* msgt_size = */
+ 1, /* msgt_number = */
+ TRUE, /* msgt_inline = */
+ FALSE, /* msgt_longform = */
+ FALSE, /* msgt_deallocate = */
+ 0 /* msgt_unused = */
+ };
+ const mach_msg_type_t control_portCheck =
+ {
+ MACH_MSG_TYPE_PORT_SEND, /* msgt_name = */
+ 32, /* msgt_size = */
+ 1, /* msgt_number = */
+ TRUE, /* msgt_inline = */
+ FALSE, /* msgt_longform = */
+ FALSE, /* msgt_deallocate = */
+ 0 /* msgt_unused = */
+ };
+ const mach_msg_type_t RetCodeType =
{
- mach_msg_header_t head;
- struct fsys_startup_request startup;
+ MACH_MSG_TYPE_INTEGER_32, /* msgt_name = */
+ 32, /* msgt_size = */
+ 1, /* msgt_number = */
+ TRUE, /* msgt_inline = */
+ FALSE, /* msgt_longform = */
+ FALSE, /* msgt_deallocate = */
+ 0 /* msgt_unused = */
+ };
+ const mach_msg_type_t realnodeType =
+ {
+ -1, /* msgt_name = */
+ 32, /* msgt_size = */
+ 1, /* msgt_number = */
+ TRUE, /* msgt_inline = */
+ FALSE, /* msgt_longform = */
+ FALSE, /* msgt_deallocate = */
+ 0 /* msgt_unused = */
+ };
+
+ /* Return true iff TYPE fails to match CHECK. */
+ inline int type_check (const mach_msg_type_t *type,
+ const mach_msg_type_t *check)
+ {
+ union
+ {
+ unsigned32_t word;
+ mach_msg_type_t type;
+ } t, c;
+ t.type = *type;
+ c.type = *check;
+ return t.word != c.word;
}
+
+ error_t err;
+ union
+ {
+ mach_msg_header_t head;
+ struct fsys_startup_request startup;
+ }
request;
struct fsys_startup_reply reply;
@@ -134,9 +147,8 @@ service_fsys_startup (fshelp_open_fn_t underlying_open_fn, void *cookie,
if (request.head.msgh_id != 22000)
reply.RetCode = MIG_BAD_ID;
- else if ((*(int *)&request.startup.control_portType
- != *(int *)&control_portCheck)
- || (*(int *)&request.startup.flagsType != *(int *)&flagsCheck))
+ else if (type_check (&request.startup.control_portType, &control_portCheck)
+ || type_check (&request.startup.flagsType, &flagsCheck))
reply.RetCode = MIG_BAD_ARGUMENTS;
else
{