Fixed chmod and friends.
This commit is contained in:
parent
b9b421c186
commit
ce8f3b9933
6
Makefile
6
Makefile
@ -5,7 +5,7 @@ BUILDTIME=$(shell date "+%Y%m%d-%H%M")
|
|||||||
|
|
||||||
# Comment out the following to make a debuggable build
|
# Comment out the following to make a debuggable build
|
||||||
# Leave this off for production use.
|
# Leave this off for production use.
|
||||||
#DODEBUG=true
|
DODEBUG=true
|
||||||
|
|
||||||
#This will choke on a non-debian system
|
#This will choke on a non-debian system
|
||||||
ARCH=`uname -m | sed -e 's/i.86/i386/' | sed -e 's/sparc.*/sparc/'`
|
ARCH=`uname -m | sed -e 's/i.86/i386/' | sed -e 's/sparc.*/sparc/'`
|
||||||
@ -19,7 +19,7 @@ ifeq ($(DODEBUG),true)
|
|||||||
else
|
else
|
||||||
CFLAGS=-Wall -Os -fomit-frame-pointer -fno-builtin -D_GNU_SOURCE
|
CFLAGS=-Wall -Os -fomit-frame-pointer -fno-builtin -D_GNU_SOURCE
|
||||||
LDFLAGS= -s
|
LDFLAGS= -s
|
||||||
STRIP= strip --remove-section=.note --remove-section=.comment
|
STRIP= strip --remove-section=.note --remove-section=.comment $(PROG)
|
||||||
endif
|
endif
|
||||||
|
|
||||||
ifndef $(prefix)
|
ifndef $(prefix)
|
||||||
@ -36,7 +36,7 @@ all: busybox links
|
|||||||
|
|
||||||
busybox: $(OBJECTS)
|
busybox: $(OBJECTS)
|
||||||
$(CC) $(LDFLAGS) -o $(PROG) $(OBJECTS) $(LIBRARIES)
|
$(CC) $(LDFLAGS) -o $(PROG) $(OBJECTS) $(LIBRARIES)
|
||||||
$(STRIP) $(PROG)
|
$(STRIP)
|
||||||
|
|
||||||
links:
|
links:
|
||||||
- ./busybox.mkll | sort >busybox.links
|
- ./busybox.mkll | sort >busybox.links
|
||||||
|
@ -25,8 +25,8 @@
|
|||||||
#include "internal.h"
|
#include "internal.h"
|
||||||
|
|
||||||
|
|
||||||
static int uid=-1;
|
static uid_t uid=-1;
|
||||||
static int gid=0;
|
static gid_t gid=-1;
|
||||||
static int whichApp;
|
static int whichApp;
|
||||||
static char* invocationName=NULL;
|
static char* invocationName=NULL;
|
||||||
static mode_t mode=0644;
|
static mode_t mode=0644;
|
||||||
@ -48,18 +48,70 @@ static const char chmod_usage[] = "[-R] MODE[,MODE]... FILE...\n"
|
|||||||
"\t-R\tchange files and directories recursively.\n";
|
"\t-R\tchange files and directories recursively.\n";
|
||||||
|
|
||||||
|
|
||||||
|
uid_t my_getid(const char *filename, const char *name)
|
||||||
|
{
|
||||||
|
FILE *stream;
|
||||||
|
char *rname, *start, *end, buf[128];
|
||||||
|
uid_t rid;
|
||||||
|
|
||||||
|
stream=fopen(filename,"r");
|
||||||
|
|
||||||
|
while (fgets (buf, 128, stream) != NULL) {
|
||||||
|
if (buf[0] == '#')
|
||||||
|
continue;
|
||||||
|
|
||||||
|
start = buf;
|
||||||
|
end = strchr (start, ':');
|
||||||
|
if (end == NULL)
|
||||||
|
continue;
|
||||||
|
*end = '\0';
|
||||||
|
rname = start;
|
||||||
|
|
||||||
|
start = end + 1;
|
||||||
|
end = strchr (start, ':');
|
||||||
|
if (end == NULL)
|
||||||
|
continue;
|
||||||
|
|
||||||
|
start = end + 1;
|
||||||
|
rid = (uid_t) strtol (start, &end, 10);
|
||||||
|
if (end == start)
|
||||||
|
continue;
|
||||||
|
|
||||||
|
if (name) {
|
||||||
|
if (0 == strcmp(rname, name))
|
||||||
|
return( rid);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
fclose(stream);
|
||||||
|
return (-1);
|
||||||
|
}
|
||||||
|
|
||||||
|
uid_t
|
||||||
|
my_getpwnam(char *name)
|
||||||
|
{
|
||||||
|
return my_getid("/etc/passwd", name);
|
||||||
|
}
|
||||||
|
|
||||||
|
gid_t
|
||||||
|
my_getgrnam(char *name)
|
||||||
|
{
|
||||||
|
return my_getid("/etc/group", name);
|
||||||
|
}
|
||||||
|
|
||||||
static int fileAction(const char *fileName, struct stat* statbuf)
|
static int fileAction(const char *fileName, struct stat* statbuf)
|
||||||
{
|
{
|
||||||
switch (whichApp) {
|
switch (whichApp) {
|
||||||
case CHGRP_APP:
|
case CHGRP_APP:
|
||||||
case CHOWN_APP:
|
case CHOWN_APP:
|
||||||
if (chown(fileName, ((whichApp==CHOWN_APP)? uid: statbuf->st_uid), gid) < 0)
|
if (chown(fileName, (whichApp==CHOWN_APP)? uid : statbuf->st_uid,
|
||||||
|
(gid==-1)? statbuf->st_gid : gid) == 0) {
|
||||||
return( TRUE);
|
return( TRUE);
|
||||||
|
}
|
||||||
|
break;
|
||||||
case CHMOD_APP:
|
case CHMOD_APP:
|
||||||
fprintf(stderr, "%s, %d\n", fileName, mode);
|
if (chmod(fileName, mode) == 0)
|
||||||
if (chmod(fileName, mode))
|
|
||||||
return( TRUE);
|
return( TRUE);
|
||||||
|
break;
|
||||||
}
|
}
|
||||||
perror(fileName);
|
perror(fileName);
|
||||||
return( FALSE);
|
return( FALSE);
|
||||||
@ -67,8 +119,6 @@ static int fileAction(const char *fileName, struct stat* statbuf)
|
|||||||
|
|
||||||
int chmod_chown_chgrp_main(int argc, char **argv)
|
int chmod_chown_chgrp_main(int argc, char **argv)
|
||||||
{
|
{
|
||||||
struct group *grp;
|
|
||||||
struct passwd *pwd;
|
|
||||||
int recursiveFlag=FALSE;
|
int recursiveFlag=FALSE;
|
||||||
char *groupName;
|
char *groupName;
|
||||||
|
|
||||||
@ -104,31 +154,33 @@ int chmod_chown_chgrp_main(int argc, char **argv)
|
|||||||
fprintf(stderr, "%s: Unknown mode: %s\n", invocationName, *argv);
|
fprintf(stderr, "%s: Unknown mode: %s\n", invocationName, *argv);
|
||||||
exit( FALSE);
|
exit( FALSE);
|
||||||
}
|
}
|
||||||
//mode &= andWithMode;
|
|
||||||
fprintf(stderr, "mode %d\n", mode);
|
|
||||||
} else {
|
} else {
|
||||||
|
|
||||||
/* Find the selected group */
|
/* Find the selected group */
|
||||||
groupName = strchr(*argv, '.');
|
if ( whichApp==CHGRP_APP && groupName ) {
|
||||||
if ( whichApp==TRUE && groupName )
|
|
||||||
*groupName++ = '\0';
|
|
||||||
else
|
|
||||||
groupName = *argv;
|
groupName = *argv;
|
||||||
grp = getgrnam(groupName);
|
gid = my_getgrnam(groupName);
|
||||||
if (grp == NULL) {
|
if (gid == -1)
|
||||||
fprintf(stderr, "%s: Unknown group name: %s\n", invocationName, groupName);
|
goto bad_group;
|
||||||
exit( FALSE);
|
} else {
|
||||||
|
groupName = strchr(*argv, '.');
|
||||||
|
if (groupName) {
|
||||||
|
*groupName++ = '\0';
|
||||||
|
gid = my_getgrnam(groupName);
|
||||||
|
if (gid == -1)
|
||||||
|
goto bad_group;
|
||||||
|
} else
|
||||||
|
gid = -1;
|
||||||
}
|
}
|
||||||
gid = grp->gr_gid;
|
|
||||||
|
|
||||||
/* Find the selected user (if appropriate) */
|
/* Find the selected user (if appropriate) */
|
||||||
if (whichApp==TRUE) {
|
if (whichApp==CHOWN_APP) {
|
||||||
pwd = getpwnam(*argv);
|
uid = my_getpwnam(*argv);
|
||||||
if (pwd == NULL) {
|
if (uid == -1) {
|
||||||
fprintf(stderr, "%s: Unknown user name: %s\n", invocationName, *argv);
|
fprintf(stderr, "%s: Unknown user name: %s\n", invocationName, *argv);
|
||||||
exit( FALSE);
|
exit( FALSE);
|
||||||
}
|
}
|
||||||
uid = pwd->pw_uid;
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -142,173 +194,10 @@ int chmod_chown_chgrp_main(int argc, char **argv)
|
|||||||
exit( FALSE);
|
exit( FALSE);
|
||||||
}
|
}
|
||||||
exit(TRUE);
|
exit(TRUE);
|
||||||
|
|
||||||
|
bad_group:
|
||||||
|
fprintf(stderr, "%s: Unknown group name: %s\n", invocationName, groupName);
|
||||||
|
exit( FALSE);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
#ifdef fooo
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
#include "internal.h"
|
|
||||||
#include <pwd.h>
|
|
||||||
#include <grp.h>
|
|
||||||
#include <string.h>
|
|
||||||
#include <stdio.h>
|
|
||||||
|
|
||||||
int my_getid(const char *filename, const char *name, uid_t *id)
|
|
||||||
{
|
|
||||||
FILE *stream;
|
|
||||||
uid_t rid;
|
|
||||||
char *rname, *start, *end, buf[128];
|
|
||||||
|
|
||||||
stream=fopen(filename,"r");
|
|
||||||
|
|
||||||
while (fgets (buf, 128, stream) != NULL) {
|
|
||||||
if (buf[0] == '#')
|
|
||||||
continue;
|
|
||||||
|
|
||||||
start = buf;
|
|
||||||
end = strchr (start, ':');
|
|
||||||
if (end == NULL)
|
|
||||||
continue;
|
|
||||||
*end = '\0';
|
|
||||||
rname = start;
|
|
||||||
|
|
||||||
start = end + 1;
|
|
||||||
end = strchr (start, ':');
|
|
||||||
if (end == NULL)
|
|
||||||
continue;
|
|
||||||
|
|
||||||
start = end + 1;
|
|
||||||
rid = (uid_t) strtol (start, &end, 10);
|
|
||||||
if (end == start)
|
|
||||||
continue;
|
|
||||||
|
|
||||||
if (name) {
|
|
||||||
if (0 == strcmp(rname, name)) {
|
|
||||||
*id=rid;
|
|
||||||
return 0;
|
|
||||||
}
|
|
||||||
} else {
|
|
||||||
if ( *id == rid )
|
|
||||||
return 0;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
fclose(stream);
|
|
||||||
return -1;
|
|
||||||
}
|
|
||||||
|
|
||||||
int
|
|
||||||
my_getpwuid(uid_t *uid)
|
|
||||||
{
|
|
||||||
return my_getid("/etc/passwd", NULL, uid);
|
|
||||||
}
|
|
||||||
|
|
||||||
int
|
|
||||||
my_getpwnam(char *name, uid_t *uid)
|
|
||||||
{
|
|
||||||
return my_getid("/etc/passwd", name, uid);
|
|
||||||
}
|
|
||||||
|
|
||||||
int
|
|
||||||
my_getgrgid(gid_t *gid)
|
|
||||||
{
|
|
||||||
return my_getid("/etc/group", NULL, gid);
|
|
||||||
}
|
|
||||||
|
|
||||||
int
|
|
||||||
my_getgrnam(char *name, gid_t *gid)
|
|
||||||
{
|
|
||||||
return my_getid("/etc/group", name, gid);
|
|
||||||
}
|
|
||||||
|
|
||||||
const char chown_usage[] = "chown [-R] user-name file [file ...]\n"
|
|
||||||
"\n\tThe group list is kept in the file /etc/groups.\n\n"
|
|
||||||
"\t-R:\tRecursively change the mode of all files and directories\n"
|
|
||||||
"\t\tunder the argument directory.";
|
|
||||||
|
|
||||||
int
|
|
||||||
parse_user_name(const char * s, struct FileInfo * i)
|
|
||||||
{
|
|
||||||
char * dot = strchr(s, '.');
|
|
||||||
char * end = NULL;
|
|
||||||
uid_t id = 0;
|
|
||||||
|
|
||||||
if (! dot )
|
|
||||||
dot = strchr(s, ':');
|
|
||||||
|
|
||||||
if ( dot )
|
|
||||||
*dot = '\0';
|
|
||||||
|
|
||||||
if ( my_getpwnam(s,&id) == -1 ) {
|
|
||||||
id = strtol(s,&end,10);
|
|
||||||
if ((*end != '\0') || ( my_getpwuid(&id) == -1 )) {
|
|
||||||
fprintf(stderr, "%s: no such user.\n", s);
|
|
||||||
return 1;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
i->userID = id;
|
|
||||||
|
|
||||||
if ( dot ) {
|
|
||||||
if ( my_getgrnam(++dot,&id) == -1 ) {
|
|
||||||
id = strtol(dot,&end,10);
|
|
||||||
if ((*end != '\0') || ( my_getgrgid(&id) == -1 )) {
|
|
||||||
fprintf(stderr, "%s: no such group.\n", dot);
|
|
||||||
return 1;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
i->groupID = id;
|
|
||||||
i->changeGroupID = 1;
|
|
||||||
}
|
|
||||||
return 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
extern int
|
|
||||||
chown_main(struct FileInfo * i, int argc, char * * argv)
|
|
||||||
{
|
|
||||||
int status;
|
|
||||||
|
|
||||||
while ( argc >= 3 && strcmp("-R", argv[1]) == 0 ) {
|
|
||||||
i->recursive = 1;
|
|
||||||
argc--;
|
|
||||||
argv++;
|
|
||||||
}
|
|
||||||
|
|
||||||
if ( (status = parse_user_name(argv[1], i)) != 0 )
|
|
||||||
return status;
|
|
||||||
|
|
||||||
argv++;
|
|
||||||
argc--;
|
|
||||||
|
|
||||||
i->changeUserID = 1;
|
|
||||||
i->complainInPostProcess = 1;
|
|
||||||
|
|
||||||
return monadic_main(i, argc, argv);
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
#endif
|
|
||||||
|
46
utility.c
46
utility.c
@ -32,7 +32,7 @@
|
|||||||
#include <utime.h>
|
#include <utime.h>
|
||||||
#include <sys/stat.h>
|
#include <sys/stat.h>
|
||||||
#include <unistd.h>
|
#include <unistd.h>
|
||||||
|
#include <ctype.h>
|
||||||
|
|
||||||
/* volatile so gcc knows this is the enod of the line */
|
/* volatile so gcc knows this is the enod of the line */
|
||||||
volatile void usage(const char *usage)
|
volatile void usage(const char *usage)
|
||||||
@ -558,13 +558,17 @@ extern void createPath (const char *name, int mode)
|
|||||||
|
|
||||||
|
|
||||||
#if defined (BB_CHMOD_CHOWN_CHGRP) || defined (BB_MKDIR)
|
#if defined (BB_CHMOD_CHOWN_CHGRP) || defined (BB_MKDIR)
|
||||||
/* [ugoa]{+|-|=}[rwxstl] */
|
/* [ugoa]{+|-|=}[rwxst] */
|
||||||
extern int parse_mode( const char* s, mode_t* theMode)
|
|
||||||
|
|
||||||
|
|
||||||
|
extern int
|
||||||
|
parse_mode( const char* s, mode_t* theMode)
|
||||||
{
|
{
|
||||||
mode_t or;
|
mode_t andMode = S_ISVTX|S_ISUID|S_ISGID|S_IRWXU|S_IRWXG|S_IRWXO;
|
||||||
mode_t and;
|
mode_t orMode = 0;
|
||||||
mode_t mode = 0;
|
mode_t mode = 0;
|
||||||
mode_t groups = S_ISVTX;
|
mode_t groups = 0;
|
||||||
char type;
|
char type;
|
||||||
char c;
|
char c;
|
||||||
|
|
||||||
@ -572,7 +576,7 @@ extern int parse_mode( const char* s, mode_t* theMode)
|
|||||||
for ( ; ; ) {
|
for ( ; ; ) {
|
||||||
switch ( c = *s++ ) {
|
switch ( c = *s++ ) {
|
||||||
case '\0':
|
case '\0':
|
||||||
return (FALSE);
|
return -1;
|
||||||
case 'u':
|
case 'u':
|
||||||
groups |= S_ISUID|S_IRWXU;
|
groups |= S_ISUID|S_IRWXU;
|
||||||
continue;
|
continue;
|
||||||
@ -589,13 +593,15 @@ extern int parse_mode( const char* s, mode_t* theMode)
|
|||||||
case '=':
|
case '=':
|
||||||
case '-':
|
case '-':
|
||||||
type = c;
|
type = c;
|
||||||
if ( groups == S_ISVTX ) /* The default is "all" */
|
if ( groups == 0 ) /* The default is "all" */
|
||||||
groups |= S_ISUID|S_ISGID|S_IRWXU|S_IRWXG|S_IRWXO;
|
groups |= S_ISUID|S_ISGID|S_IRWXU|S_IRWXG|S_IRWXO;
|
||||||
break;
|
break;
|
||||||
default:
|
default:
|
||||||
if ( c >= '0' && c <= '7' && mode == 0 && groups == S_ISVTX ) {
|
if ( isdigit(c) && c >= '0' && c <= '7' && mode == 0 && groups == 0 ) {
|
||||||
and = 0;
|
andMode = 0;
|
||||||
or = strtol(--s, 0, 010);
|
orMode = strtol(--s, NULL, 8);
|
||||||
|
*theMode &= andMode;
|
||||||
|
*theMode |= orMode;
|
||||||
return (TRUE);
|
return (TRUE);
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
@ -621,28 +627,34 @@ extern int parse_mode( const char* s, mode_t* theMode)
|
|||||||
mode |= S_IXGRP|S_ISUID|S_ISGID;
|
mode |= S_IXGRP|S_ISUID|S_ISGID;
|
||||||
continue;
|
continue;
|
||||||
case 't':
|
case 't':
|
||||||
mode |= S_ISVTX;
|
mode |= 0;
|
||||||
continue;
|
continue;
|
||||||
default:
|
default:
|
||||||
return (FALSE);
|
*theMode &= andMode;
|
||||||
|
*theMode |= orMode;
|
||||||
|
return( TRUE);
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
switch ( type ) {
|
switch ( type ) {
|
||||||
case '=':
|
case '=':
|
||||||
and &= ~(groups);
|
andMode &= ~(groups);
|
||||||
/* fall through */
|
/* fall through */
|
||||||
case '+':
|
case '+':
|
||||||
or |= mode & groups;
|
orMode |= mode & groups;
|
||||||
break;
|
break;
|
||||||
case '-':
|
case '-':
|
||||||
and &= ~(mode & groups);
|
andMode &= ~(mode & groups);
|
||||||
or &= and;
|
orMode &= andMode;
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
} while ( c == ',' );
|
} while ( c == ',' );
|
||||||
|
*theMode &= andMode;
|
||||||
|
*theMode |= orMode;
|
||||||
return (TRUE);
|
return (TRUE);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user