2000-04-15 05:14:39 +00:00
|
|
|
/*-
|
|
|
|
* Copyright (c) 1999, 2000 Robert N. M. Watson
|
|
|
|
* 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.
|
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*
|
|
|
|
* $FreeBSD$
|
|
|
|
*/
|
|
|
|
/*
|
|
|
|
* TrustedBSD Project - extended attribute support for UFS-like file systems
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <sys/types.h>
|
|
|
|
#include <sys/uio.h>
|
|
|
|
#include <sys/extattr.h>
|
|
|
|
#include <ufs/ufs/extattr.h>
|
|
|
|
#include <fcntl.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
|
2000-04-19 20:13:34 +00:00
|
|
|
extern char *optarg;
|
|
|
|
extern int optind;
|
|
|
|
|
2000-04-15 05:14:39 +00:00
|
|
|
void
|
|
|
|
usage(void)
|
|
|
|
{
|
|
|
|
|
|
|
|
fprintf(stderr,
|
|
|
|
"usage:\n"
|
|
|
|
" extattrctl start [path]\n"
|
|
|
|
" extattrctl stop [path]\n"
|
2000-04-19 20:13:34 +00:00
|
|
|
" extattrctl initattr [-p] [-r [kroa]] [-w [kroa]] [attrsize] "
|
|
|
|
"[attrfile]\n"
|
2000-04-15 05:14:39 +00:00
|
|
|
" extattrctl enable [path] [attrname] [attrfile]\n"
|
|
|
|
" extattrctl disable [path] [attrname]\n");
|
2000-04-19 20:13:34 +00:00
|
|
|
exit(-1);
|
2000-04-15 05:14:39 +00:00
|
|
|
}
|
|
|
|
|
2000-04-19 20:13:34 +00:00
|
|
|
/*
|
|
|
|
* Return a level, or -1
|
|
|
|
*/
|
2000-04-15 05:14:39 +00:00
|
|
|
int
|
2000-04-19 20:13:34 +00:00
|
|
|
extattr_level_from_string(char *string)
|
|
|
|
{
|
|
|
|
|
|
|
|
if (strlen(string) != 1)
|
|
|
|
return (-1);
|
|
|
|
|
|
|
|
switch(string[0]) {
|
|
|
|
case 'k':
|
|
|
|
case 'K':
|
|
|
|
return (UFS_EXTATTR_PERM_KERNEL);
|
|
|
|
case 'r':
|
|
|
|
case 'R':
|
|
|
|
return (UFS_EXTATTR_PERM_ROOT);
|
|
|
|
case 'o':
|
|
|
|
case 'O':
|
|
|
|
return (UFS_EXTATTR_PERM_OWNER);
|
|
|
|
case 'a':
|
|
|
|
case 'A':
|
|
|
|
return (UFS_EXTATTR_PERM_ANYONE);
|
|
|
|
default:
|
|
|
|
return (-1);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
initattr(int argc, char *argv[])
|
2000-04-15 05:14:39 +00:00
|
|
|
{
|
|
|
|
struct ufs_extattr_fileheader uef;
|
2000-04-19 20:13:34 +00:00
|
|
|
int initattr_pflag = 0;
|
|
|
|
int initattr_rlevel = UFS_EXTATTR_PERM_OWNER;
|
|
|
|
int initattr_wlevel = UFS_EXTATTR_PERM_OWNER;
|
|
|
|
int ch, i, error;
|
|
|
|
|
|
|
|
while ((ch = getopt(argc, argv, "prw")) != -1)
|
|
|
|
switch (ch) {
|
|
|
|
case 'p':
|
|
|
|
initattr_pflag = 1;
|
|
|
|
break;
|
|
|
|
case 'r':
|
|
|
|
initattr_rlevel = extattr_level_from_string(optarg);
|
|
|
|
if (initattr_rlevel == -1)
|
|
|
|
usage();
|
|
|
|
break;
|
|
|
|
case 'w':
|
|
|
|
initattr_wlevel = extattr_level_from_string(optarg);
|
|
|
|
if (initattr_wlevel == -1)
|
|
|
|
usage();
|
|
|
|
break;
|
|
|
|
case '?':
|
|
|
|
default:
|
|
|
|
usage();
|
|
|
|
}
|
2000-04-15 05:14:39 +00:00
|
|
|
|
2000-04-19 20:13:34 +00:00
|
|
|
argc -= optind;
|
|
|
|
argv += optind;
|
|
|
|
|
|
|
|
if (argc != 2)
|
2000-04-15 05:14:39 +00:00
|
|
|
usage();
|
2000-04-19 20:13:34 +00:00
|
|
|
|
|
|
|
error = 0;
|
|
|
|
if ((i = open(argv[1], O_CREAT | O_EXCL | O_WRONLY, 0600)) != -1) {
|
|
|
|
uef.uef_magic = UFS_EXTATTR_MAGIC;
|
|
|
|
uef.uef_version = UFS_EXTATTR_VERSION;
|
|
|
|
uef.uef_write_perm = initattr_wlevel;
|
|
|
|
uef.uef_read_perm = initattr_rlevel;
|
|
|
|
uef.uef_size = atoi(argv[0]);
|
|
|
|
if (write(i, &uef, sizeof(uef)) == -1)
|
|
|
|
error = -1;
|
|
|
|
else if (initattr_pflag) {
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (i == -1 || error == -1) {
|
|
|
|
perror("argv[1]");
|
|
|
|
return (-1);
|
2000-04-15 05:14:39 +00:00
|
|
|
}
|
|
|
|
|
2000-04-19 20:13:34 +00:00
|
|
|
return (0);
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
main(int argc, char *argv[])
|
|
|
|
{
|
|
|
|
int error = 0;
|
|
|
|
|
|
|
|
if (argc < 2)
|
|
|
|
usage();
|
|
|
|
|
2000-04-15 05:14:39 +00:00
|
|
|
if (!strcmp(argv[1], "start")) {
|
2000-04-19 20:13:34 +00:00
|
|
|
if (argc != 3)
|
2000-04-15 05:14:39 +00:00
|
|
|
usage();
|
|
|
|
error = extattrctl(argv[2], UFS_EXTATTR_CMD_START, 0, 0);
|
|
|
|
} else if (!strcmp(argv[1], "stop")) {
|
2000-04-19 20:13:34 +00:00
|
|
|
if (argc != 3)
|
2000-04-15 05:14:39 +00:00
|
|
|
usage();
|
|
|
|
error = extattrctl(argv[2], UFS_EXTATTR_CMD_STOP, 0, 0);
|
|
|
|
} else if (!strcmp(argv[1], "enable")) {
|
2000-04-19 20:13:34 +00:00
|
|
|
if (argc != 5)
|
2000-04-15 05:14:39 +00:00
|
|
|
usage();
|
|
|
|
error = extattrctl(argv[2], UFS_EXTATTR_CMD_ENABLE, argv[3],
|
|
|
|
argv[4]);
|
|
|
|
} else if (!strcmp(argv[1], "disable")) {
|
2000-04-19 20:13:34 +00:00
|
|
|
if (argc != 4)
|
2000-04-15 05:14:39 +00:00
|
|
|
usage();
|
|
|
|
error = extattrctl(argv[2], UFS_EXTATTR_CMD_DISABLE, argv[3],
|
|
|
|
NULL);
|
|
|
|
} else if (!strcmp(argv[1], "initattr")) {
|
2000-04-19 20:13:34 +00:00
|
|
|
argc -= 2;
|
|
|
|
argv += 2;
|
|
|
|
error = initattr(argc, argv);
|
|
|
|
} else
|
2000-04-15 05:14:39 +00:00
|
|
|
usage();
|
|
|
|
|
|
|
|
if (error)
|
|
|
|
perror(argv[1]);
|
|
|
|
|
|
|
|
return(error);
|
|
|
|
}
|