/* diskfs_startup_diskfs -- advertise our fsys control port to our parent FS. Copyright (C) 1994, 1995, 1996 Free Software Foundation This file is part of the GNU Hurd. The GNU Hurd is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2, or (at your option) any later version. The GNU Hurd is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with the GNU Hurd; see the file COPYING. If not, write to the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ /* Written by Roland McGrath. */ #include "priv.h" #include #include #include #include mach_port_t diskfs_startup_diskfs (mach_port_t bootstrap, int flags) { mach_port_t realnode; struct port_info *newpi; if (bootstrap != MACH_PORT_NULL) { errno = ports_create_port (diskfs_control_class, diskfs_port_bucket, sizeof (struct port_info), &newpi); if (! errno) { errno = fsys_startup (bootstrap, flags, ports_get_right (newpi), MACH_MSG_TYPE_MAKE_SEND, &realnode); ports_port_deref (newpi); } if (errno) { perror ("Translator startup failure: fsys_startup"); exit (1); } mach_port_deallocate (mach_task_self (), bootstrap); _diskfs_ncontrol_ports++; _diskfs_init_completed (); } else { realnode = MACH_PORT_NULL; /* We are the bootstrap filesystem; do special boot-time setup. */ diskfs_start_bootstrap (); } if (diskfs_default_sync_interval) /* Start 'em sync'n */ diskfs_set_sync_interval (diskfs_default_sync_interval); return realnode; } error_t diskfs_S_startup_dosync (mach_port_t handle) { error_t err = 0; struct port_info *pi = ports_lookup_port (diskfs_port_bucket, handle, diskfs_shutdown_notification_class); if (!pi) return EOPNOTSUPP; if (! diskfs_readonly) { /* First start a sync so that if something goes wrong we at least get this much done. */ diskfs_sync_everything (0); diskfs_set_hypermetadata (0, 0); rwlock_writer_lock (&diskfs_fsys_lock); /* Permit all the current RPC's to finish, and then suspend new ones */ err = ports_inhibit_class_rpcs (diskfs_protid_class); if (! err) { diskfs_sync_everything (1); diskfs_set_hypermetadata (1, 1); _diskfs_diskdirty = 0; ports_resume_class_rpcs (diskfs_protid_class); } rwlock_writer_unlock (&diskfs_fsys_lock); } ports_port_deref (pi); return err; } /* This is called when we have an ordinary environment, complete with proc and auth ports. */ void _diskfs_init_completed () { startup_t init; process_t proc; error_t err; struct port_info *pi; mach_port_t notify; char *name; /* Contact the startup server and register our shutdown request. If we get an error, print an informational message. */ proc = getproc (); assert (proc); err = ports_create_port (diskfs_shutdown_notification_class, diskfs_port_bucket, sizeof (struct port_info), &pi); if (err) goto errout; err = proc_getmsgport (proc, 1, &init); mach_port_deallocate (mach_task_self (), proc); if (err) goto errout; notify = ports_get_right (pi); ports_port_deref (pi); asprintf (&name, "%s %s", program_invocation_short_name, diskfs_device_arg); err = startup_request_notification (init, notify, MACH_MSG_TYPE_MAKE_SEND, name); free (name); if (err) goto errout; mach_port_deallocate (mach_task_self (), init); return; errout: fprintf (stderr, "Cannot request shutdown notification: %s\n", strerror (err)); }