/* * Copyright (c) 2000-2001, Boris Popov * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * 1. Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * 2. Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * 3. All advertising materials mentioning features or use of this software * must display the following acknowledgement: * This product includes software developed by Boris Popov. * 4. Neither the name of the author nor the names of any co-contributors * may be used to endorse or promote products derived from this software * without specific prior written permission. * * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * * $Id: mount_smbfs.c,v 1.23 2003/09/08 23:45:26 lindak Exp $ */ #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include "mntopts.h" static char mount_point[MAXPATHLEN + 1]; static void usage(void); static struct mntopt mopts[] = { MOPT_STDOPTS, { NULL, 0, 0, 0 } }; int main(int argc, char *argv[]) { struct smb_ctx sctx, *ctx = &sctx; struct smbfs_args mdata; struct stat st; #ifdef APPLE extern void dropsuid(); extern int loadsmbvfs(); #endif /* APPLE */ struct vfsconf vfc; char *next; int opt, error, mntflags, caseopt; #ifdef APPLE dropsuid(); #endif /* APPLE */ if (argc == 2) { if (strcmp(argv[1], "-h") == 0) { usage(); } else if (strcmp(argv[1], "-v") == 0) { errx(EX_OK, "version %d.%d.%d", SMBFS_VERSION / 100000, (SMBFS_VERSION % 10000) / 1000, (SMBFS_VERSION % 1000) / 100); } } if (argc < 3) usage(); error = getvfsbyname(SMBFS_VFSNAME, &vfc); #ifdef APPLE if (error) { error = loadsmbvfs(); error = getvfsbyname(SMBFS_VFSNAME, &vfc); } #else if (error && vfsisloadable(SMBFS_VFSNAME)) { if(vfsload(SMBFS_VFSNAME)) err(EX_OSERR, "vfsload("SMBFS_VFSNAME")"); endvfsent(); error = getvfsbyname(SMBFS_VFSNAME, &vfc); } #endif /* APPLE */ if (error) errx(EX_OSERR, "SMB filesystem is not available"); error = smb_lib_init(); if (error) exit(error); mntflags = error = 0; bzero(&mdata, sizeof(mdata)); mdata.uid = mdata.gid = -1; caseopt = SMB_CS_NONE; error = smb_ctx_init(ctx, argc, argv, SMBL_SHARE, SMBL_SHARE, SMB_ST_DISK); if (error) exit(error); error = smb_ctx_readrc(ctx); if (error) exit(error); if (smb_rc) rc_close(smb_rc); #ifdef APPLE while ((opt = getopt(argc, argv, STDPARAM_OPT"c:d:f:g:l:n:o:u:w:x:")) != -1) { #else while ((opt = getopt(argc, argv, STDPARAM_OPT"c:d:f:g:l:n:o:u:w:")) != -1) { #endif switch (opt) { case STDPARAM_ARGS: error = smb_ctx_opt(ctx, opt, optarg); if (error) exit(error); break; case 'u': { struct passwd *pwd; pwd = isdigit(optarg[0]) ? getpwuid(atoi(optarg)) : getpwnam(optarg); if (pwd == NULL) errx(EX_NOUSER, "unknown user '%s'", optarg); mdata.uid = pwd->pw_uid; break; } case 'g': { struct group *grp; grp = isdigit(optarg[0]) ? getgrgid(atoi(optarg)) : getgrnam(optarg); if (grp == NULL) errx(EX_NOUSER, "unknown group '%s'", optarg); mdata.gid = grp->gr_gid; break; } case 'd': errno = 0; mdata.dir_mode = strtol(optarg, &next, 8); if (errno || *next != 0) errx(EX_DATAERR, "invalid value for directory mode"); break; case 'f': errno = 0; mdata.file_mode = strtol(optarg, &next, 8); if (errno || *next != 0) errx(EX_DATAERR, "invalid value for file mode"); break; case '?': usage(); /*NOTREACHED*/ case 'n': { char *inp, *nsp; nsp = inp = optarg; while ((nsp = strsep(&inp, ",;:")) != NULL) { if (strcasecmp(nsp, "LONG") == 0) mdata.flags |= SMBFS_MOUNT_NO_LONG; else errx(EX_DATAERR, "unknown suboption '%s'", nsp); } break; }; case 'o': getmntopts(optarg, mopts, &mntflags, 0); break; case 'c': switch (optarg[0]) { case 'l': caseopt |= SMB_CS_LOWER; break; case 'u': caseopt |= SMB_CS_UPPER; break; default: errx(EX_DATAERR, "invalid suboption '%c' for -c", optarg[0]); } break; #ifdef APPLE /* * XXX FIXME TODO HACK * Ill advised temporary hack, for automount feature * freeze only. Design is seriously flawed. * This implements a mount-all. Unfortunately, * servers have been known to have >15000 users, and * the common practice is one sharepoint per user. * Use of this hack with more than a small number of * sharepoints per server will at best make the client * hang up for a while, and at worst it will crash * servers. * A better design involves automount "triggers" * for each sharepoint, so mounts are only attempted * when actually needed. */ case 'x': if (!isdigit(optarg[0])) errx(EX_USAGE, "non-numeric mount count '%s'", optarg); ctx->ct_maxxxx = atoi(optarg); ctx->ct_flags |= SMBCF_XXX; ctx->ct_minlevel = SMBL_VC; ctx->ct_maxlevel = SMBL_VC; if (mdata.file_mode == 0) mdata.file_mode = S_IRWXU; if (mdata.dir_mode == 0) mdata.dir_mode = S_IRWXU; break; #endif /* APPLE */ default: usage(); } } if (optind == argc - 2) optind++; if (optind != argc - 1) usage(); realpath(argv[optind], mount_point); if (stat(mount_point, &st) == -1) err(EX_OSERR, "could not find mount point %s", mount_point); if (!S_ISDIR(st.st_mode)) { errno = ENOTDIR; err(EX_OSERR, "can't mount on %s", mount_point); } /* if (smb_getextattr(mount_point, &einfo) == 0) errx(EX_OSERR, "can't mount on %s twice", mount_point); */ if (mdata.uid == (uid_t)-1) mdata.uid = st.st_uid; if (mdata.gid == (gid_t)-1) mdata.gid = st.st_gid; if (mdata.file_mode == 0 ) mdata.file_mode = st.st_mode & (S_IRWXU | S_IRWXG | S_IRWXO); if (mdata.dir_mode == 0) { mdata.dir_mode = mdata.file_mode; if (mdata.dir_mode & S_IRUSR) mdata.dir_mode |= S_IXUSR; if (mdata.dir_mode & S_IRGRP) mdata.dir_mode |= S_IXGRP; if (mdata.dir_mode & S_IROTH) mdata.dir_mode |= S_IXOTH; } /* * For now, let connection be private for this mount */ ctx->ct_ssn.ioc_opt |= SMBVOPT_PRIVATE; ctx->ct_ssn.ioc_owner = ctx->ct_sh.ioc_owner = st.st_uid; ctx->ct_ssn.ioc_group = ctx->ct_sh.ioc_group = mdata.gid; opt = 0; if (mdata.dir_mode & S_IXGRP) opt |= SMBM_EXECGRP; if (mdata.dir_mode & S_IXOTH) opt |= SMBM_EXECOTH; ctx->ct_ssn.ioc_rights |= opt; ctx->ct_sh.ioc_rights |= opt; #ifdef APPLE /* * If we got our password from the keychain and get an * authorization error, we come back here to obtain a new * password from user input. */ reauth: #endif error = smb_ctx_resolve(ctx); if (error) exit(error); #ifdef APPLE if (!(ctx->ct_flags & SMBCF_XXX)) { again: error = smb_ctx_lookup(ctx, SMBL_SHARE, SMBLK_CREATE); if (error == ENOENT && ctx->ct_origshare) { strcpy(ctx->ct_sh.ioc_share, ctx->ct_origshare); free(ctx->ct_origshare); ctx->ct_origshare = NULL; goto again; /* try again using share name as given */ } if (ctx->ct_flags & SMBCF_KCFOUND && smb_autherr(error)) { ctx->ct_ssn.ioc_password[0] = '\0'; goto reauth; } } #else error = smb_ctx_lookup(ctx, SMBL_SHARE, SMBLK_CREATE); #endif if (error) exit(error); strcpy(mdata.mount_point, mount_point); mdata.version = SMBFS_VERSION; mdata.dev = ctx->ct_fd; mdata.caseopt = caseopt; #ifdef APPLE if (ctx->ct_flags & SMBCF_XXX) { char **cpp = ctx->ct_xxx; if (!cpp) { /* no sharepoints found? */ smb_ctx_done(ctx); return 0; } /* * Loop thru shares, creating directories, if needed, * before mounting. Directories created are not deleted. * Authentication and other errors are expected & ignored */ for ( ; *cpp; cpp++) { if ((unsigned int)snprintf(mdata.mount_point, sizeof mdata.mount_point, "%s/%s", mount_point, *cpp) >= sizeof mdata.mount_point) { smb_error("buffer overflow (attack?) on %s", 0, mdata.mount_point); continue; } error = smb_ctx_setshare(ctx, *cpp, SMB_ST_DISK); if (error) { smb_error("x setshare error %d on %s", 0, error, mdata.mount_point); continue; } lookup: error = smb_ctx_lookup(ctx, SMBL_SHARE, SMBLK_CREATE); if (error) { smb_error("x lookup error: %s", error, mdata.mount_point); if (error == ENOENT && ctx->ct_origshare) { strcpy(ctx->ct_sh.ioc_share, ctx->ct_origshare); free(ctx->ct_origshare); ctx->ct_origshare = NULL; goto lookup; /* retry with share name as given */ } continue; } mdata.dev = ctx->ct_fd; (void)rmdir(mdata.mount_point); error = mkdir(mdata.mount_point, mdata.dir_mode); if (error) { smb_error("x mkdir error: %s", error, mdata.mount_point); /* * Most mkdir errors will recur. For those * we could break rather than continue. */ error = smb_ctx_tdis(ctx); if (error) /* unable to clean up?! */ exit(error); continue; } error = mount(SMBFS_VFSNAME, mdata.mount_point, mntflags, (void*)&mdata); if (error) { smb_error("mount mount error: %s", error, mdata.mount_point); error = smb_ctx_tdis(ctx); if (error) /* unable to clean up?! */ exit(error); continue; } } cpp++; free(*cpp); free(ctx->ct_xxx); ctx->ct_xxx = NULL; smb_ctx_done(ctx); return error; } #endif error = mount(SMBFS_VFSNAME, mdata.mount_point, mntflags, (void*)&mdata); #ifdef APPLE if (ctx->ct_flags & SMBCF_KCFOUND && smb_autherr(error)) { ctx->ct_ssn.ioc_password[0] = '\0'; goto reauth; } if (!error) smb_save2keychain(ctx); #endif smb_ctx_done(ctx); if (error) { smb_error("mount error: %s", error, mdata.mount_point); exit(errno); } return 0; } static void usage(void) { fprintf(stderr, "%s\n", "usage: mount_smbfs [-Nh]" #ifndef APPLE /* XXX broken */ " [-E cs1:cs2]" #endif " [-I host]" #ifndef APPLE /* XXX broken */ " [-L locale]" #endif "\n" " [-M cmode[/smode]] [-O cuid[:cgid]/suid[:sgid]]\n" " [-R retrycount] [-T timeout]\n" " [-U user] [-W workgroup]" #ifndef APPLE /* XXX broken */ " [-c case]" #endif "\n" " [-d mode] [-f mode] [-g gid] [-n long] [-u uid]\n" " //" #ifdef APPLE "[workgroup;][user[:password]@]server[/share]" #else "[user@]server/share" #endif " path"); exit (EX_USAGE); }