/* unieject - Universal eject command Copyright (C) 2005-2006, Diego Pettenò This program 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 of the License, or (at your option) any later version. This program 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 unieject; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA Portions of this files are under the following copyrights: Copyright (c) 1995-2000 Shunsuke Akiyama . */ #include #include #include #include #include #include char *checkmount(struct unieject_opts opts, char **device) { char *ret = NULL; struct statfs *mntbuf; int mnts = getmntinfo(&mntbuf, MNT_NOWAIT); if (UNLIKELY(mnts == 0)) { unieject_error(opts, _("error receiving mount information: %s\n"), strerror(errno)); return *device; } int n; for (n = 0; n < mnts; n++) { // ignore special devices if ( mntbuf[n].f_mntfromname[0] != '/' ) continue; char *newdev = simplifylink(mntbuf[n].f_mntfromname); char *newmnt = simplifylink(mntbuf[n].f_mntonname); if ( strcmp(newdev, *device) == 0 ) { unieject_verbose(opts, _("'%s' is mounted as '%s'\n"), *device, newmnt); ret = newmnt; free(newdev); break; } if ( strcmp(newmnt, *device) == 0 ) { unieject_verbose(opts, _("'%s' is the mount point of '%s'\n"), *device, newdev); ret = *device; *device = newdev; free(newmnt); break; } free(newdev); free(newmnt); } return ret; } bool internal_umountdev(struct unieject_opts opts, char *device) { char *mnt = NULL; while ( ( mnt = checkmount(opts, &device) ) ) { if ( UNLIKELY(unmount(mnt, opts.force ? MNT_FORCE : 0) == -1) ) { unieject_error(opts, _("unable to unmount '%s' [%s]\n"), mnt, strerror(errno)); return false; } unieject_verbose(opts, _("'%s' unmounted from '%s'\n"), device, mnt); } return true; }