summaryrefslogtreecommitdiff
path: root/libdiskfs/trans-callback.c
diff options
context:
space:
mode:
authorMiles Bader <miles@gnu.org>1995-11-02 22:53:01 +0000
committerMiles Bader <miles@gnu.org>1995-11-02 22:53:01 +0000
commit1d6ef8f4602ddb80e0c6a4e37bad00c37dae81d0 (patch)
tree8ef3028ed92528c6cb6da58e711f37411ef5acf1 /libdiskfs/trans-callback.c
parentf8d2eb0316d448bd5ada775ff0b27f628501026d (diff)
(_diskfs_translator_callback1_fn, _diskfs_translator_callback2_fn):
New functions, replacing the single original. (_diskfs_translator_callback1, _diskfs_translator_callback2): New variables, replacing the single original.
Diffstat (limited to 'libdiskfs/trans-callback.c')
-rw-r--r--libdiskfs/trans-callback.c51
1 files changed, 28 insertions, 23 deletions
diff --git a/libdiskfs/trans-callback.c b/libdiskfs/trans-callback.c
index cd1025f5..e5b0df08 100644
--- a/libdiskfs/trans-callback.c
+++ b/libdiskfs/trans-callback.c
@@ -24,15 +24,12 @@
/* Callback function needed for calls to fshelp_fetch_root. See
<hurd/fshelp.h> for the interface description. */
static error_t
-_diskfs_translator_callback_fn (void *cookie1, void *cookie2,
- mach_port_t *underlying,
- uid_t *uid, gid_t *gid, char **argz,
- int *argz_len)
+_diskfs_translator_callback1_fn (void *cookie1, void *cookie2,
+ uid_t *uid, gid_t *gid,
+ char **argz, int *argz_len)
{
- struct node *np = cookie1;
- mach_port_t *dotdot = cookie2;
error_t err;
- struct protid *newpi;
+ struct node *np = cookie1;
if (!np->istranslated)
return ENOENT;
@@ -43,25 +40,33 @@ _diskfs_translator_callback_fn (void *cookie1, void *cookie2,
*uid = np->dn_stat.st_uid;
*gid = np->dn_stat.st_gid;
-
- newpi = diskfs_make_protid (diskfs_make_peropen (np,
- (O_READ|O_EXEC
-/* For now, don't give translators write access to their underlying node.
- The fsys_startup interface will soon make this irrelevant anyway. */
-#ifdef XXX
- | (!diskfs_readonly
- ? O_WRITE : 0)
-#endif
- ),
- *dotdot),
- uid, 1, gid, 1);
+
+ return 0;
+}
+
+/* Callback function needed for calls to fshelp_fetch_root. See
+ <hurd/fshelp.h> for the interface description. */
+static error_t
+_diskfs_translator_callback2_fn (void *cookie1, void *cookie2,
+ int flags,
+ mach_port_t *underlying,
+ mach_msg_type_name_t underlying_type)
+{
+ struct node *np = cookie1;
+ mach_port_t *dotdot = cookie2;
+ struct protid *newpi =
+ diskfs_make_protid (diskfs_make_peropen (np, flags, *dotdot),
+ np->dn_stat.st_uid, 1, np->dn_stat.st_gid, 1);
*underlying = ports_get_right (newpi);
- mach_port_insert_right (mach_task_self (), *underlying, *underlying,
- MACH_MSG_TYPE_MAKE_SEND);
+ *underlying_type = MACH_MSG_TYPE_MAKE_SEND;
+
ports_port_deref (newpi);
+
return 0;
}
-
-fshelp_callback_t _diskfs_translator_callback = _diskfs_translator_callback_fn;
+fshelp_fetch_root_callback1_t _diskfs_translator_callback1 =
+ _diskfs_translator_callback1_fn;
+fshelp_fetch_root_callback2_t _diskfs_translator_callback2 =
+ _diskfs_translator_callback2_fn;