1 1.10 stacktic /* $NetBSD: fattr.c,v 1.10 2009/06/19 12:55:45 stacktic Exp $ */ 2 1.1 jdolecek 3 1.1 jdolecek /*- 4 1.1 jdolecek * Copyright (c) 2000 The NetBSD Foundation, Inc. 5 1.1 jdolecek * All rights reserved. 6 1.1 jdolecek * 7 1.1 jdolecek * Redistribution and use in source and binary forms, with or without 8 1.1 jdolecek * modification, are permitted provided that the following conditions 9 1.1 jdolecek * are met: 10 1.1 jdolecek * 1. Redistributions of source code must retain the above copyright 11 1.1 jdolecek * notice, this list of conditions and the following disclaimer. 12 1.1 jdolecek * 2. Redistributions in binary form must reproduce the above copyright 13 1.1 jdolecek * notice, this list of conditions and the following disclaimer in the 14 1.1 jdolecek * documentation and/or other materials provided with the distribution. 15 1.1 jdolecek * 16 1.1 jdolecek * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS 17 1.1 jdolecek * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED 18 1.1 jdolecek * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR 19 1.1 jdolecek * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS 20 1.1 jdolecek * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR 21 1.1 jdolecek * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF 22 1.1 jdolecek * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS 23 1.1 jdolecek * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN 24 1.1 jdolecek * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) 25 1.1 jdolecek * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE 26 1.1 jdolecek * POSSIBILITY OF SUCH DAMAGE. 27 1.1 jdolecek */ 28 1.1 jdolecek 29 1.1 jdolecek #include <sys/cdefs.h> 30 1.1 jdolecek #ifndef lint 31 1.10 stacktic __RCSID("$NetBSD: fattr.c,v 1.10 2009/06/19 12:55:45 stacktic Exp $"); 32 1.1 jdolecek #endif /* not lint */ 33 1.1 jdolecek 34 1.1 jdolecek #include <sys/param.h> 35 1.1 jdolecek #include <sys/mount.h> 36 1.1 jdolecek #include <sys/stat.h> 37 1.1 jdolecek #include <err.h> 38 1.1 jdolecek #include <grp.h> 39 1.1 jdolecek #include <pwd.h> 40 1.1 jdolecek #include <stdio.h> 41 1.1 jdolecek #include <stdlib.h> 42 1.1 jdolecek #include <string.h> 43 1.1 jdolecek #include <unistd.h> 44 1.1 jdolecek 45 1.9 pooka #include "mountprog.h" 46 1.1 jdolecek 47 1.5 christos int 48 1.5 christos a_num(const char *s, const char *id_type) 49 1.4 dsl { 50 1.4 dsl int id; 51 1.4 dsl char *ep; 52 1.4 dsl 53 1.4 dsl id = strtol(s, &ep, 0); 54 1.4 dsl if (*ep || s == ep || id < 0) 55 1.4 dsl errx(1, "unknown %s id: %s", id_type, s); 56 1.4 dsl return id; 57 1.4 dsl } 58 1.4 dsl 59 1.1 jdolecek gid_t 60 1.4 dsl a_gid(const char *s) 61 1.1 jdolecek { 62 1.1 jdolecek struct group *gr; 63 1.1 jdolecek 64 1.1 jdolecek if ((gr = getgrnam(s)) != NULL) 65 1.4 dsl return gr->gr_gid; 66 1.5 christos return a_num(s, "group"); 67 1.1 jdolecek } 68 1.1 jdolecek 69 1.1 jdolecek uid_t 70 1.4 dsl a_uid(const char *s) 71 1.1 jdolecek { 72 1.1 jdolecek struct passwd *pw; 73 1.1 jdolecek 74 1.1 jdolecek if ((pw = getpwnam(s)) != NULL) 75 1.4 dsl return pw->pw_uid; 76 1.5 christos return a_num(s, "user"); 77 1.1 jdolecek } 78 1.1 jdolecek 79 1.1 jdolecek mode_t 80 1.4 dsl a_mask(const char *s) 81 1.1 jdolecek { 82 1.4 dsl int rv; 83 1.1 jdolecek char *ep; 84 1.1 jdolecek 85 1.10 stacktic rv = strtol(s, &ep, 8); 86 1.4 dsl if (s == ep || *ep || rv < 0) 87 1.1 jdolecek errx(1, "invalid file mode: %s", s); 88 1.4 dsl return rv; 89 1.1 jdolecek } 90