/* * CDDL HEADER START * * The contents of this file are subject to the terms of the * Common Development and Distribution License (the "License"). * You may not use this file except in compliance with the License. * * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE * or http://www.opensolaris.org/os/licensing. * See the License for the specific language governing permissions * and limitations under the License. * * When distributing Covered Code, include this CDDL HEADER in each * file and include the License file at usr/src/OPENSOLARIS.LICENSE. * If applicable, add the following below this CDDL HEADER, with the * fields enclosed by brackets "[]" replaced with your own identifying * information: Portions Copyright [yyyy] [name of copyright owner] * * CDDL HEADER END */ /* * Copyright 2007 Sun Microsystems, Inc. All rights reserved. * Use is subject to license terms. */ #pragma ident "%Z%%M% %I% %E% SMI" #include #include #include #include #include #include #include #include #include #include #include #include #include "stdusers.h" #define FILE_BUFF 40960 int supress = 0; void usage(void) { (void) fprintf(stderr, "usage: install [-sd][-m mode][-g group][-u owner] " "-f dir file ...\n"); } void file_copy(char *src_file, char *dest_file) { int src_fd; int dest_fd; int count; static char file_buff[FILE_BUFF]; if ((src_fd = open(src_file, O_RDONLY)) == -1) { perror(src_file); exit(1); } if ((dest_fd = open(dest_file, O_CREAT|O_WRONLY|O_TRUNC, 0755)) == -1) { perror(dest_file); exit(1); } while ((count = read(src_fd, file_buff, FILE_BUFF)) > 0) { write(dest_fd, file_buff, count); } if (count == -1) { perror("file_copy(read)"); exit(1); } if (!supress) (void) printf("%s installed as %s\n", src_file, dest_file); close(src_fd); close(dest_fd); } void chown_file(const char *file, const char *group, const char *owner) { gid_t grp = (gid_t)-1; uid_t own = (uid_t)-1; if (group) { grp = stdfind(group, groupnames); if (grp < 0) (void) fprintf(stderr, "unknown group(%s)\n", group); } if (owner) { own = stdfind(owner, usernames); if (own < 0) { (void) fprintf(stderr, "unknown owner(%s)\n", owner); exit(1); } } if (chown(file, own, grp) == -1) { perror("chown"); exit(1); } } char * find_basename(const char *str) { int i; int len; len = strlen(str); for (i = len-1; i >= 0; i--) if (str[i] == '/') return ((char *)(str + i + 1)); return ((char *)str); } int main(int argc, char **argv) { int c; int errflg = 0; int dirflg = 0; char *group = NULL; char *owner = NULL; char *dirb = NULL; char *ins_file = NULL; int mode = -1; char dest_file[MAXPATHLEN]; while ((c = getopt(argc, argv, "f:sm:du:g:")) != EOF) { switch (c) { case 'f': dirb = optarg; break; case 'g': group = optarg; break; case 'u': owner = optarg; break; case 'd': dirflg = 1; break; case 'm': mode = strtol(optarg, NULL, 8); break; case 's': supress = 1; break; case '?': errflg++; break; } } if (errflg) { usage(); return (1); } if (argc == optind) { usage(); return (1); } if (!dirflg && (dirb == NULL)) { (void) fprintf(stderr, "install: no destination directory specified.\n"); return (1); } for (c = optind; c < argc; c++) { ins_file = argv[c]; if (dirflg) { struct stat buf; if (stat(ins_file, &buf) == 0) { if ((buf.st_mode & S_IFMT) == S_IFDIR) continue; } else { if (errno != ENOENT) { perror("install: stat"); return (1); } } (void) strcpy(dest_file, ins_file); if (mkdirp(dest_file, 0755) == -1) { if (!supress) { (void) printf( "install: mkdirp of %s failed\n", dest_file); } } else if (!supress) { (void) printf("directory %s created\n", dest_file); } } else { (void) strcat(strcat(strcpy(dest_file, dirb), "/"), find_basename(ins_file)); file_copy(ins_file, dest_file); } if (group || owner) chown_file(dest_file, group, owner); if (mode != -1) { umask(0); if (chmod(dest_file, mode) == -1) { perror("chmod"); return (1); } } } return (0); }