1998-02-27 07:54:42 +03:00
|
|
|
/* Various utilities - Unix variants
|
|
|
|
Copyright (C) 1994, 1995, 1996 the Free Software Foundation.
|
|
|
|
Written 1994, 1995, 1996 by:
|
|
|
|
Miguel de Icaza, Janne Kukonlehto, Dugan Porter,
|
|
|
|
Jakub Jelinek, Mauricio Plaza.
|
|
|
|
|
|
|
|
This program is free software; you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU General Public License as published by
|
|
|
|
the Free Software Foundation; either version 2 of the License, or
|
|
|
|
(at your option) any later version.
|
|
|
|
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
along with this program; if not, write to the Free Software
|
2000-08-23 02:50:00 +04:00
|
|
|
Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
|
1998-02-27 07:54:42 +03:00
|
|
|
|
|
|
|
#include <config.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <sys/types.h>
|
|
|
|
#ifdef HAVE_UNISTD_H
|
2001-09-07 21:52:19 +04:00
|
|
|
# include <unistd.h>
|
1998-02-27 07:54:42 +03:00
|
|
|
#endif
|
2003-02-11 19:57:45 +03:00
|
|
|
#include <signal.h> /* struct sigaction */
|
1998-02-27 07:54:42 +03:00
|
|
|
#include <limits.h> /* INT_MAX */
|
|
|
|
#include <sys/stat.h>
|
|
|
|
#include <stdarg.h>
|
2003-02-11 19:57:45 +03:00
|
|
|
#include <errno.h> /* errno */
|
1998-02-27 07:54:42 +03:00
|
|
|
#include <string.h>
|
|
|
|
#include <ctype.h>
|
2001-09-11 06:18:02 +04:00
|
|
|
#ifdef HAVE_SYS_IOCTL_H
|
2001-09-07 21:52:19 +04:00
|
|
|
# include <sys/ioctl.h>
|
1998-02-27 07:54:42 +03:00
|
|
|
#endif
|
2001-09-03 09:07:40 +04:00
|
|
|
|
1998-02-27 07:54:42 +03:00
|
|
|
#include "global.h"
|
2003-06-22 13:17:46 +04:00
|
|
|
#include "execute.h"
|
2002-11-14 10:25:18 +03:00
|
|
|
#include "wtools.h" /* message() */
|
1998-02-27 07:54:42 +03:00
|
|
|
|
|
|
|
struct sigaction startup_handler;
|
|
|
|
|
2001-09-01 17:47:34 +04:00
|
|
|
/* uid of the MC user */
|
2002-07-30 03:12:31 +04:00
|
|
|
static uid_t current_user_uid = -1;
|
2001-09-01 17:47:34 +04:00
|
|
|
/* List of the gids of the user */
|
2002-07-30 03:12:31 +04:00
|
|
|
static GTree *current_user_gid = NULL;
|
2001-09-01 17:47:34 +04:00
|
|
|
|
|
|
|
/* Helper function to compare 2 gids */
|
|
|
|
static gint
|
|
|
|
mc_gid_compare (gconstpointer v, gconstpointer v2)
|
|
|
|
{
|
|
|
|
return ((GPOINTER_TO_UINT(v) > GPOINTER_TO_UINT(v2)) ? 1 :
|
|
|
|
(GPOINTER_TO_UINT(v) < GPOINTER_TO_UINT(v2)) ? -1 : 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Helper function to delete keys of the gids tree */
|
|
|
|
static gint
|
|
|
|
mc_gid_destroy (gpointer key, gpointer value, gpointer data)
|
|
|
|
{
|
|
|
|
g_free (value);
|
|
|
|
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* This function initialize global GTree with the gids of groups,
|
|
|
|
to which user belongs. Tree also store corresponding string
|
|
|
|
with the name of the group.
|
|
|
|
FIXME: Do we need this names at all? If not, we can simplify
|
|
|
|
initialization by eliminating g_strdup's.
|
|
|
|
*/
|
1998-02-27 07:54:42 +03:00
|
|
|
void init_groups (void)
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
struct passwd *pwd;
|
|
|
|
struct group *grp;
|
|
|
|
|
2001-12-18 23:00:27 +03:00
|
|
|
current_user_uid = getuid ();
|
2001-09-01 17:47:34 +04:00
|
|
|
pwd = getpwuid (current_user_uid);
|
|
|
|
g_return_if_fail (pwd != NULL);
|
2001-12-18 23:00:27 +03:00
|
|
|
|
2001-09-01 17:47:34 +04:00
|
|
|
current_user_gid = g_tree_new (mc_gid_compare);
|
1998-02-27 07:54:42 +03:00
|
|
|
|
2001-12-18 23:00:27 +03:00
|
|
|
/* Put user's primary group first. */
|
|
|
|
if ((grp = getgrgid (pwd->pw_gid)) != NULL) {
|
|
|
|
g_tree_insert (current_user_gid,
|
2002-07-11 03:27:36 +04:00
|
|
|
GUINT_TO_POINTER ((int) grp->gr_gid),
|
2001-12-18 23:00:27 +03:00
|
|
|
g_strdup (grp->gr_name));
|
|
|
|
}
|
|
|
|
|
1998-02-27 07:54:42 +03:00
|
|
|
setgrent ();
|
2001-12-18 23:00:27 +03:00
|
|
|
while ((grp = getgrent ()) != NULL) {
|
|
|
|
for (i = 0; grp->gr_mem[i]; i++) {
|
|
|
|
if (!strcmp (pwd->pw_name, grp->gr_mem[i]) &&
|
|
|
|
!g_tree_lookup (current_user_gid,
|
2002-07-11 03:27:36 +04:00
|
|
|
GUINT_TO_POINTER ((int) grp->gr_gid))) {
|
2001-12-18 23:00:27 +03:00
|
|
|
g_tree_insert (current_user_gid,
|
2002-07-11 03:27:36 +04:00
|
|
|
GUINT_TO_POINTER ((int) grp->gr_gid),
|
2001-12-18 23:00:27 +03:00
|
|
|
g_strdup (grp->gr_name));
|
2001-09-01 17:47:34 +04:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
1998-02-27 07:54:42 +03:00
|
|
|
endgrent ();
|
|
|
|
}
|
|
|
|
|
2001-09-01 17:47:34 +04:00
|
|
|
/* Return the index of the permissions triplet */
|
1998-02-27 07:54:42 +03:00
|
|
|
int
|
2001-09-01 17:47:34 +04:00
|
|
|
get_user_permissions (struct stat *buf) {
|
1998-02-27 07:54:42 +03:00
|
|
|
|
|
|
|
if (buf->st_uid == current_user_uid || current_user_uid == 0)
|
|
|
|
return 0;
|
2001-09-01 17:47:34 +04:00
|
|
|
|
2002-07-11 03:27:36 +04:00
|
|
|
if (current_user_gid && g_tree_lookup (current_user_gid,
|
|
|
|
GUINT_TO_POINTER((int) buf->st_gid)))
|
2001-09-01 17:47:34 +04:00
|
|
|
return 1;
|
1998-02-27 07:54:42 +03:00
|
|
|
|
|
|
|
return 2;
|
|
|
|
}
|
|
|
|
|
2001-09-01 17:47:34 +04:00
|
|
|
/* Completely destroys the gids tree */
|
1998-02-27 07:54:42 +03:00
|
|
|
void
|
2001-09-01 17:47:34 +04:00
|
|
|
destroy_groups (void)
|
1998-02-27 07:54:42 +03:00
|
|
|
{
|
2003-02-21 19:32:32 +03:00
|
|
|
g_tree_traverse (current_user_gid, mc_gid_destroy, G_POST_ORDER, NULL);
|
2001-09-01 17:47:34 +04:00
|
|
|
g_tree_destroy (current_user_gid);
|
1998-02-27 07:54:42 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
#define UID_CACHE_SIZE 200
|
|
|
|
#define GID_CACHE_SIZE 30
|
|
|
|
|
|
|
|
typedef struct {
|
|
|
|
int index;
|
|
|
|
char *string;
|
|
|
|
} int_cache;
|
|
|
|
|
2001-07-14 10:13:29 +04:00
|
|
|
static int_cache uid_cache [UID_CACHE_SIZE];
|
|
|
|
static int_cache gid_cache [GID_CACHE_SIZE];
|
1998-02-27 07:54:42 +03:00
|
|
|
|
|
|
|
static char *i_cache_match (int id, int_cache *cache, int size)
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
|
|
|
|
for (i = 0; i < size; i++)
|
|
|
|
if (cache [i].index == id)
|
|
|
|
return cache [i].string;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void i_cache_add (int id, int_cache *cache, int size, char *text,
|
|
|
|
int *last)
|
|
|
|
{
|
|
|
|
if (cache [*last].string)
|
Glibing..... (2)
Wed Jan 27 03:17:44 1999 Timur Bakeyev <mc@bat.ru>
* Converted memory managment to Glib. Now we use g_new()/g_malloc()/
g_strdup()/g_free() routings. Also, copy_strings() replaced by
g_strconcat(), strcasecmp() -> g_strcasecmp(),and sprintf() by
g_snprintf().
* Some sequences of malloc()/sprintf() changed to g_strdup_printf().
* mad.[ch]: Modified, to work with new GLib's memory managment. Fixed
a missing #undef for tempnam, which caused dead loop. Add several new
functions to emulate GLib memory managment.
*main.c, mad.[ch]: Add a new switch "-M", which allows to redirect MAD
messages to the file.
* util.[ch], utilunix.c: Modified, deleted our variants of strcasecmp()
and strdup() - we have g_ equivalences. Remove get_full_name() - it is
similar to concat_dir_and_file(). Some other tricks with g_* functions.
* global.h: Modified, extended. Now it is main memory mangment include -
i.e. all inclusions of <stdlib.h>, <malloc.h>, <glib.h>, "fs.h", "mem.h",
"util.h" and "mad.h" done there. This elimanates problem with proper or-
der of #include's.
* All around the source - changed order of #include's, most of them gone
to global.h (see above), minor changes, like "0" -> NULL in string func-
tions.
1999-01-27 04:08:30 +03:00
|
|
|
g_free (cache [*last].string);
|
|
|
|
cache [*last].string = g_strdup (text);
|
1998-02-27 07:54:42 +03:00
|
|
|
cache [*last].index = id;
|
|
|
|
*last = ((*last)+1) % size;
|
|
|
|
}
|
|
|
|
|
|
|
|
char *get_owner (int uid)
|
|
|
|
{
|
|
|
|
struct passwd *pwd;
|
Glibing..... (2)
Wed Jan 27 03:17:44 1999 Timur Bakeyev <mc@bat.ru>
* Converted memory managment to Glib. Now we use g_new()/g_malloc()/
g_strdup()/g_free() routings. Also, copy_strings() replaced by
g_strconcat(), strcasecmp() -> g_strcasecmp(),and sprintf() by
g_snprintf().
* Some sequences of malloc()/sprintf() changed to g_strdup_printf().
* mad.[ch]: Modified, to work with new GLib's memory managment. Fixed
a missing #undef for tempnam, which caused dead loop. Add several new
functions to emulate GLib memory managment.
*main.c, mad.[ch]: Add a new switch "-M", which allows to redirect MAD
messages to the file.
* util.[ch], utilunix.c: Modified, deleted our variants of strcasecmp()
and strdup() - we have g_ equivalences. Remove get_full_name() - it is
similar to concat_dir_and_file(). Some other tricks with g_* functions.
* global.h: Modified, extended. Now it is main memory mangment include -
i.e. all inclusions of <stdlib.h>, <malloc.h>, <glib.h>, "fs.h", "mem.h",
"util.h" and "mad.h" done there. This elimanates problem with proper or-
der of #include's.
* All around the source - changed order of #include's, most of them gone
to global.h (see above), minor changes, like "0" -> NULL in string func-
tions.
1999-01-27 04:08:30 +03:00
|
|
|
static char ibuf [10];
|
1998-02-27 07:54:42 +03:00
|
|
|
char *name;
|
1998-04-17 04:21:53 +04:00
|
|
|
static int uid_last;
|
1998-02-27 07:54:42 +03:00
|
|
|
|
|
|
|
if ((name = i_cache_match (uid, uid_cache, UID_CACHE_SIZE)) != NULL)
|
|
|
|
return name;
|
|
|
|
|
|
|
|
pwd = getpwuid (uid);
|
|
|
|
if (pwd){
|
|
|
|
i_cache_add (uid, uid_cache, UID_CACHE_SIZE, pwd->pw_name, &uid_last);
|
|
|
|
return pwd->pw_name;
|
|
|
|
}
|
|
|
|
else {
|
Glibing..... (2)
Wed Jan 27 03:17:44 1999 Timur Bakeyev <mc@bat.ru>
* Converted memory managment to Glib. Now we use g_new()/g_malloc()/
g_strdup()/g_free() routings. Also, copy_strings() replaced by
g_strconcat(), strcasecmp() -> g_strcasecmp(),and sprintf() by
g_snprintf().
* Some sequences of malloc()/sprintf() changed to g_strdup_printf().
* mad.[ch]: Modified, to work with new GLib's memory managment. Fixed
a missing #undef for tempnam, which caused dead loop. Add several new
functions to emulate GLib memory managment.
*main.c, mad.[ch]: Add a new switch "-M", which allows to redirect MAD
messages to the file.
* util.[ch], utilunix.c: Modified, deleted our variants of strcasecmp()
and strdup() - we have g_ equivalences. Remove get_full_name() - it is
similar to concat_dir_and_file(). Some other tricks with g_* functions.
* global.h: Modified, extended. Now it is main memory mangment include -
i.e. all inclusions of <stdlib.h>, <malloc.h>, <glib.h>, "fs.h", "mem.h",
"util.h" and "mad.h" done there. This elimanates problem with proper or-
der of #include's.
* All around the source - changed order of #include's, most of them gone
to global.h (see above), minor changes, like "0" -> NULL in string func-
tions.
1999-01-27 04:08:30 +03:00
|
|
|
g_snprintf (ibuf, sizeof (ibuf), "%d", uid);
|
1998-02-27 07:54:42 +03:00
|
|
|
return ibuf;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
char *get_group (int gid)
|
|
|
|
{
|
|
|
|
struct group *grp;
|
Glibing..... (2)
Wed Jan 27 03:17:44 1999 Timur Bakeyev <mc@bat.ru>
* Converted memory managment to Glib. Now we use g_new()/g_malloc()/
g_strdup()/g_free() routings. Also, copy_strings() replaced by
g_strconcat(), strcasecmp() -> g_strcasecmp(),and sprintf() by
g_snprintf().
* Some sequences of malloc()/sprintf() changed to g_strdup_printf().
* mad.[ch]: Modified, to work with new GLib's memory managment. Fixed
a missing #undef for tempnam, which caused dead loop. Add several new
functions to emulate GLib memory managment.
*main.c, mad.[ch]: Add a new switch "-M", which allows to redirect MAD
messages to the file.
* util.[ch], utilunix.c: Modified, deleted our variants of strcasecmp()
and strdup() - we have g_ equivalences. Remove get_full_name() - it is
similar to concat_dir_and_file(). Some other tricks with g_* functions.
* global.h: Modified, extended. Now it is main memory mangment include -
i.e. all inclusions of <stdlib.h>, <malloc.h>, <glib.h>, "fs.h", "mem.h",
"util.h" and "mad.h" done there. This elimanates problem with proper or-
der of #include's.
* All around the source - changed order of #include's, most of them gone
to global.h (see above), minor changes, like "0" -> NULL in string func-
tions.
1999-01-27 04:08:30 +03:00
|
|
|
static char gbuf [10];
|
1998-02-27 07:54:42 +03:00
|
|
|
char *name;
|
|
|
|
static int gid_last;
|
|
|
|
|
|
|
|
if ((name = i_cache_match (gid, gid_cache, GID_CACHE_SIZE)) != NULL)
|
|
|
|
return name;
|
|
|
|
|
|
|
|
grp = getgrgid (gid);
|
|
|
|
if (grp){
|
|
|
|
i_cache_add (gid, gid_cache, GID_CACHE_SIZE, grp->gr_name, &gid_last);
|
|
|
|
return grp->gr_name;
|
|
|
|
} else {
|
Glibing..... (2)
Wed Jan 27 03:17:44 1999 Timur Bakeyev <mc@bat.ru>
* Converted memory managment to Glib. Now we use g_new()/g_malloc()/
g_strdup()/g_free() routings. Also, copy_strings() replaced by
g_strconcat(), strcasecmp() -> g_strcasecmp(),and sprintf() by
g_snprintf().
* Some sequences of malloc()/sprintf() changed to g_strdup_printf().
* mad.[ch]: Modified, to work with new GLib's memory managment. Fixed
a missing #undef for tempnam, which caused dead loop. Add several new
functions to emulate GLib memory managment.
*main.c, mad.[ch]: Add a new switch "-M", which allows to redirect MAD
messages to the file.
* util.[ch], utilunix.c: Modified, deleted our variants of strcasecmp()
and strdup() - we have g_ equivalences. Remove get_full_name() - it is
similar to concat_dir_and_file(). Some other tricks with g_* functions.
* global.h: Modified, extended. Now it is main memory mangment include -
i.e. all inclusions of <stdlib.h>, <malloc.h>, <glib.h>, "fs.h", "mem.h",
"util.h" and "mad.h" done there. This elimanates problem with proper or-
der of #include's.
* All around the source - changed order of #include's, most of them gone
to global.h (see above), minor changes, like "0" -> NULL in string func-
tions.
1999-01-27 04:08:30 +03:00
|
|
|
g_snprintf (gbuf, sizeof (gbuf), "%d", gid);
|
1998-02-27 07:54:42 +03:00
|
|
|
return gbuf;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Since ncurses uses a handler that automatically refreshes the */
|
|
|
|
/* screen after a SIGCONT, and we don't want this behavior when */
|
|
|
|
/* spawning a child, we save the original handler here */
|
|
|
|
void save_stop_handler (void)
|
|
|
|
{
|
|
|
|
sigaction (SIGTSTP, NULL, &startup_handler);
|
|
|
|
}
|
|
|
|
|
1998-04-24 05:08:06 +04:00
|
|
|
int my_system (int flags, const char *shell, const char *command)
|
1998-02-27 07:54:42 +03:00
|
|
|
{
|
|
|
|
struct sigaction ignore, save_intr, save_quit, save_stop;
|
|
|
|
pid_t pid;
|
|
|
|
int status = 0;
|
1998-04-24 05:08:06 +04:00
|
|
|
|
1998-02-27 07:54:42 +03:00
|
|
|
ignore.sa_handler = SIG_IGN;
|
|
|
|
sigemptyset (&ignore.sa_mask);
|
|
|
|
ignore.sa_flags = 0;
|
|
|
|
|
|
|
|
sigaction (SIGINT, &ignore, &save_intr);
|
|
|
|
sigaction (SIGQUIT, &ignore, &save_quit);
|
|
|
|
|
|
|
|
/* Restore the original SIGTSTP handler, we don't want ncurses' */
|
|
|
|
/* handler messing the screen after the SIGCONT */
|
|
|
|
sigaction (SIGTSTP, &startup_handler, &save_stop);
|
|
|
|
|
|
|
|
if ((pid = fork ()) < 0){
|
|
|
|
fprintf (stderr, "\n\nfork () = -1\n");
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
if (pid == 0){
|
1999-04-13 23:37:45 +04:00
|
|
|
signal (SIGINT, SIG_DFL);
|
|
|
|
signal (SIGQUIT, SIG_DFL);
|
|
|
|
signal (SIGTSTP, SIG_DFL);
|
|
|
|
signal (SIGCHLD, SIG_DFL);
|
1998-02-27 07:54:42 +03:00
|
|
|
|
1998-08-25 20:00:16 +04:00
|
|
|
if (flags & EXECUTE_AS_SHELL)
|
1999-02-14 03:05:53 +03:00
|
|
|
execl (shell, shell, "-c", command, NULL);
|
1998-02-27 07:54:42 +03:00
|
|
|
else
|
1999-02-14 03:05:53 +03:00
|
|
|
execlp (shell, shell, command, NULL);
|
1998-02-27 07:54:42 +03:00
|
|
|
|
|
|
|
_exit (127); /* Exec error */
|
|
|
|
} else {
|
|
|
|
while (waitpid (pid, &status, 0) < 0)
|
|
|
|
if (errno != EINTR){
|
|
|
|
status = -1;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
sigaction (SIGINT, &save_intr, NULL);
|
|
|
|
sigaction (SIGQUIT, &save_quit, NULL);
|
|
|
|
sigaction (SIGTSTP, &save_stop, NULL);
|
|
|
|
|
|
|
|
return WEXITSTATUS(status);
|
|
|
|
}
|
|
|
|
|
2003-11-27 12:45:22 +03:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Perform tilde expansion if possible.
|
|
|
|
* Always return a newly allocated string, even if it's unchanged.
|
|
|
|
*/
|
|
|
|
char *
|
|
|
|
tilde_expand (const char *directory)
|
1998-02-27 07:54:42 +03:00
|
|
|
{
|
|
|
|
struct passwd *passwd;
|
2003-11-28 18:23:19 +03:00
|
|
|
const char *p, *q;
|
1998-02-27 07:54:42 +03:00
|
|
|
char *name;
|
2003-11-27 12:45:22 +03:00
|
|
|
|
1998-02-27 07:54:42 +03:00
|
|
|
if (*directory != '~')
|
Glibing..... (2)
Wed Jan 27 03:17:44 1999 Timur Bakeyev <mc@bat.ru>
* Converted memory managment to Glib. Now we use g_new()/g_malloc()/
g_strdup()/g_free() routings. Also, copy_strings() replaced by
g_strconcat(), strcasecmp() -> g_strcasecmp(),and sprintf() by
g_snprintf().
* Some sequences of malloc()/sprintf() changed to g_strdup_printf().
* mad.[ch]: Modified, to work with new GLib's memory managment. Fixed
a missing #undef for tempnam, which caused dead loop. Add several new
functions to emulate GLib memory managment.
*main.c, mad.[ch]: Add a new switch "-M", which allows to redirect MAD
messages to the file.
* util.[ch], utilunix.c: Modified, deleted our variants of strcasecmp()
and strdup() - we have g_ equivalences. Remove get_full_name() - it is
similar to concat_dir_and_file(). Some other tricks with g_* functions.
* global.h: Modified, extended. Now it is main memory mangment include -
i.e. all inclusions of <stdlib.h>, <malloc.h>, <glib.h>, "fs.h", "mem.h",
"util.h" and "mad.h" done there. This elimanates problem with proper or-
der of #include's.
* All around the source - changed order of #include's, most of them gone
to global.h (see above), minor changes, like "0" -> NULL in string func-
tions.
1999-01-27 04:08:30 +03:00
|
|
|
return g_strdup (directory);
|
1998-02-27 07:54:42 +03:00
|
|
|
|
2003-11-28 18:23:19 +03:00
|
|
|
p = directory + 1;
|
2003-11-27 12:45:22 +03:00
|
|
|
|
2003-11-28 18:23:19 +03:00
|
|
|
q = strchr (p, PATH_SEP);
|
2003-11-27 12:45:22 +03:00
|
|
|
|
1998-02-27 07:54:42 +03:00
|
|
|
/* d = "~" or d = "~/" */
|
2003-11-28 18:23:19 +03:00
|
|
|
if (!(*p) || (*p == PATH_SEP)) {
|
1998-02-27 07:54:42 +03:00
|
|
|
passwd = getpwuid (geteuid ());
|
2003-11-28 18:23:19 +03:00
|
|
|
q = (*p == PATH_SEP) ? p + 1 : "";
|
1998-02-27 07:54:42 +03:00
|
|
|
} else {
|
2003-11-28 18:23:19 +03:00
|
|
|
if (!q) {
|
|
|
|
passwd = getpwnam (p);
|
1998-02-27 07:54:42 +03:00
|
|
|
} else {
|
2003-11-28 18:23:19 +03:00
|
|
|
name = g_malloc (q - p + 1);
|
|
|
|
strncpy (name, p, q - p);
|
|
|
|
name[q - p] = 0;
|
1998-02-27 07:54:42 +03:00
|
|
|
passwd = getpwnam (name);
|
2000-04-18 12:58:42 +04:00
|
|
|
g_free (name);
|
1998-02-27 07:54:42 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2003-11-27 12:45:22 +03:00
|
|
|
/* If we can't figure the user name, leave tilde unexpanded */
|
1998-02-27 07:54:42 +03:00
|
|
|
if (!passwd)
|
2003-11-27 12:45:22 +03:00
|
|
|
return g_strdup (directory);
|
1998-02-27 07:54:42 +03:00
|
|
|
|
2003-11-28 18:23:19 +03:00
|
|
|
return g_strconcat (passwd->pw_dir, PATH_SEP_STR, q, NULL);
|
1998-02-27 07:54:42 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2002-09-11 08:58:24 +04:00
|
|
|
/*
|
|
|
|
* Return the directory where mc should keep its temporary files.
|
|
|
|
* This directory is (in Bourne shell terms) "${TMPDIR=/tmp}-$USER"
|
|
|
|
* When called the first time, the directory is created if needed.
|
|
|
|
* The first call should be done early, since we are using fprintf()
|
|
|
|
* and not message() to report possible problems.
|
|
|
|
*/
|
|
|
|
const char *
|
|
|
|
mc_tmpdir (void)
|
|
|
|
{
|
2002-12-26 17:47:46 +03:00
|
|
|
static char buffer[64];
|
|
|
|
static const char *tmpdir;
|
2002-09-11 08:58:24 +04:00
|
|
|
const char *sys_tmp;
|
|
|
|
struct passwd *pwd;
|
2002-12-26 17:47:46 +03:00
|
|
|
struct stat st;
|
|
|
|
const char *error = NULL;
|
2002-09-11 08:58:24 +04:00
|
|
|
|
2002-12-26 17:47:46 +03:00
|
|
|
/* Check if already initialized */
|
|
|
|
if (tmpdir)
|
2002-09-11 08:58:24 +04:00
|
|
|
return tmpdir;
|
|
|
|
|
|
|
|
sys_tmp = getenv ("TMPDIR");
|
|
|
|
if (!sys_tmp) {
|
|
|
|
sys_tmp = TMPDIR_DEFAULT;
|
|
|
|
}
|
|
|
|
|
|
|
|
pwd = getpwuid (getuid ());
|
2002-12-26 17:47:46 +03:00
|
|
|
g_snprintf (buffer, sizeof (buffer), "%s/mc-%s", sys_tmp,
|
2002-09-11 08:58:24 +04:00
|
|
|
pwd->pw_name);
|
2002-12-26 17:47:46 +03:00
|
|
|
canonicalize_pathname (buffer);
|
|
|
|
|
|
|
|
if (lstat (buffer, &st) == 0) {
|
|
|
|
/* Sanity check for existing directory */
|
|
|
|
if (!S_ISDIR (st.st_mode))
|
|
|
|
error = _("%s is not a directory\n");
|
|
|
|
else if (st.st_uid != getuid ())
|
|
|
|
error = _("Directory %s is not owned by you\n");
|
|
|
|
else if (((st.st_mode & 0777) != 0700)
|
|
|
|
&& (chmod (buffer, 0700) != 0))
|
|
|
|
error = _("Cannot set correct permissions for directory %s\n");
|
|
|
|
} else {
|
|
|
|
/* Need to create directory */
|
|
|
|
if (mkdir (buffer, S_IRWXU) != 0) {
|
2002-10-20 12:34:31 +04:00
|
|
|
fprintf (stderr,
|
|
|
|
_("Cannot create temporary directory %s: %s\n"),
|
2002-12-26 17:47:46 +03:00
|
|
|
buffer, unix_error_string (errno));
|
|
|
|
error = "";
|
2002-10-20 12:34:31 +04:00
|
|
|
}
|
2002-09-11 08:58:24 +04:00
|
|
|
}
|
|
|
|
|
2002-12-26 17:47:46 +03:00
|
|
|
if (!error) {
|
|
|
|
tmpdir = buffer;
|
|
|
|
} else {
|
|
|
|
int test_fd;
|
|
|
|
char *test_fn;
|
|
|
|
int fallback_ok = 0;
|
|
|
|
|
|
|
|
if (*error)
|
|
|
|
fprintf (stderr, error, buffer);
|
|
|
|
|
|
|
|
/* Test if sys_tmp is suitable for temporary files */
|
|
|
|
tmpdir = sys_tmp;
|
|
|
|
test_fd = mc_mkstemps (&test_fn, "mctest", NULL);
|
|
|
|
if (test_fd != -1) {
|
|
|
|
close (test_fd);
|
|
|
|
test_fd = open (test_fn, O_RDONLY);
|
|
|
|
if (test_fd != -1) {
|
|
|
|
close (test_fd);
|
|
|
|
unlink (test_fn);
|
|
|
|
fallback_ok = 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (fallback_ok) {
|
|
|
|
fprintf (stderr, _("Temporary files will be created in %s\n"),
|
|
|
|
sys_tmp);
|
|
|
|
} else {
|
|
|
|
fprintf (stderr, _("Temporary files will not be created\n"));
|
|
|
|
tmpdir = "/dev/null/";
|
|
|
|
}
|
|
|
|
|
|
|
|
fprintf (stderr, "%s\n", _("Press any key to continue..."));
|
|
|
|
getc (stdin);
|
|
|
|
}
|
|
|
|
|
2002-09-11 08:58:24 +04:00
|
|
|
return tmpdir;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
1998-02-27 07:54:42 +03:00
|
|
|
/* Pipes are guaranteed to be able to hold at least 4096 bytes */
|
|
|
|
/* More than that would be unportable */
|
|
|
|
#define MAX_PIPE_SIZE 4096
|
|
|
|
|
|
|
|
static int error_pipe[2]; /* File descriptors of error pipe */
|
|
|
|
static int old_error; /* File descriptor of old standard error */
|
|
|
|
|
|
|
|
/* Creates a pipe to hold standard error for a later analysis. */
|
|
|
|
/* The pipe can hold 4096 bytes. Make sure no more is written */
|
|
|
|
/* or a deadlock might occur. */
|
|
|
|
void open_error_pipe (void)
|
|
|
|
{
|
|
|
|
if (pipe (error_pipe) < 0){
|
2002-10-21 08:13:49 +04:00
|
|
|
message (0, _("Warning"), _(" Pipe failed "));
|
1998-02-27 07:54:42 +03:00
|
|
|
}
|
|
|
|
old_error = dup (2);
|
|
|
|
if(old_error < 0 || close(2) || dup (error_pipe[1]) != 2){
|
2002-10-21 08:13:49 +04:00
|
|
|
message (0, _("Warning"), _(" Dup failed "));
|
1998-02-27 07:54:42 +03:00
|
|
|
close (error_pipe[0]);
|
|
|
|
close (error_pipe[1]);
|
|
|
|
}
|
|
|
|
close (error_pipe[1]);
|
|
|
|
}
|
|
|
|
|
1999-03-18 21:43:52 +03:00
|
|
|
/*
|
|
|
|
* Returns true if an error was displayed
|
2002-08-24 21:25:27 +04:00
|
|
|
* error: -1 - ignore errors, 0 - display warning, 1 - display error
|
|
|
|
* text is prepended to the error message from the pipe
|
1999-03-18 21:43:52 +03:00
|
|
|
*/
|
|
|
|
int
|
|
|
|
close_error_pipe (int error, char *text)
|
1998-02-27 07:54:42 +03:00
|
|
|
{
|
|
|
|
char *title;
|
|
|
|
char msg[MAX_PIPE_SIZE];
|
|
|
|
int len = 0;
|
|
|
|
|
|
|
|
if (error)
|
1998-03-25 08:16:00 +03:00
|
|
|
title = MSG_ERROR;
|
1998-02-27 07:54:42 +03:00
|
|
|
else
|
2002-10-21 08:13:49 +04:00
|
|
|
title = _("Warning");
|
1998-02-27 07:54:42 +03:00
|
|
|
if (old_error >= 0){
|
|
|
|
close (2);
|
|
|
|
dup (old_error);
|
|
|
|
close (old_error);
|
|
|
|
len = read (error_pipe[0], msg, MAX_PIPE_SIZE);
|
|
|
|
|
|
|
|
if (len >= 0)
|
|
|
|
msg[len] = 0;
|
|
|
|
close (error_pipe[0]);
|
|
|
|
}
|
|
|
|
if (error < 0)
|
1999-03-18 21:43:52 +03:00
|
|
|
return 0; /* Just ignore error message */
|
1998-02-27 07:54:42 +03:00
|
|
|
if (text == NULL){
|
2002-08-24 21:25:27 +04:00
|
|
|
if (len <= 0)
|
|
|
|
return 0; /* Nothing to show */
|
1998-02-27 07:54:42 +03:00
|
|
|
|
|
|
|
/* Show message from pipe */
|
2002-07-01 23:08:44 +04:00
|
|
|
message (error, title, "%s", msg);
|
1998-02-27 07:54:42 +03:00
|
|
|
} else {
|
|
|
|
/* Show given text and possible message from pipe */
|
|
|
|
message (error, title, " %s \n %s ", text, msg);
|
|
|
|
}
|
1999-03-18 21:43:52 +03:00
|
|
|
return 1;
|
1998-02-27 07:54:42 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Canonicalize path, and return a new path. Do everything in situ.
|
|
|
|
The new path differs from path in:
|
|
|
|
Multiple `/'s are collapsed to a single `/'.
|
|
|
|
Leading `./'s and trailing `/.'s are removed.
|
|
|
|
Trailing `/'s are removed.
|
|
|
|
Non-leading `../'s and trailing `..'s are handled by removing
|
|
|
|
portions of the path. */
|
2004-01-24 02:53:37 +03:00
|
|
|
void
|
2003-03-10 09:52:57 +03:00
|
|
|
canonicalize_pathname (char *path)
|
1998-02-27 07:54:42 +03:00
|
|
|
{
|
2003-03-10 09:52:57 +03:00
|
|
|
char *p, *s;
|
|
|
|
int len;
|
1998-02-27 07:54:42 +03:00
|
|
|
|
2003-03-10 09:52:57 +03:00
|
|
|
if (!path[0] || !path[1])
|
2004-01-24 02:53:37 +03:00
|
|
|
return;
|
2002-07-27 01:51:16 +04:00
|
|
|
|
2003-03-10 09:52:57 +03:00
|
|
|
/* Collapse multiple slashes */
|
|
|
|
p = path;
|
|
|
|
while (*p) {
|
|
|
|
if (p[0] == PATH_SEP && p[1] == PATH_SEP) {
|
|
|
|
s = p + 1;
|
|
|
|
while (*(++s) == PATH_SEP);
|
|
|
|
strcpy (p + 1, s);
|
|
|
|
}
|
|
|
|
p++;
|
|
|
|
}
|
1998-02-27 07:54:42 +03:00
|
|
|
|
2003-03-10 09:52:57 +03:00
|
|
|
/* Collapse "/./" -> "/" */
|
|
|
|
p = path;
|
|
|
|
while (*p) {
|
|
|
|
if (p[0] == PATH_SEP && p[1] == '.' && p[2] == PATH_SEP)
|
|
|
|
strcpy (p, p + 2);
|
|
|
|
else
|
|
|
|
p++;
|
|
|
|
}
|
1998-02-27 07:54:42 +03:00
|
|
|
|
2003-03-10 09:52:57 +03:00
|
|
|
/* Remove trailing slashes */
|
|
|
|
p = path + strlen (path) - 1;
|
|
|
|
while (p > path && *p == PATH_SEP)
|
|
|
|
*p-- = 0;
|
1998-02-27 07:54:42 +03:00
|
|
|
|
2003-03-10 09:52:57 +03:00
|
|
|
/* Remove leading "./" */
|
|
|
|
if (path[0] == '.' && path[1] == PATH_SEP) {
|
|
|
|
if (path[2] == 0) {
|
|
|
|
path[1] = 0;
|
2004-01-24 02:53:37 +03:00
|
|
|
return;
|
2003-03-10 09:52:57 +03:00
|
|
|
} else {
|
|
|
|
strcpy (path, path + 2);
|
|
|
|
}
|
|
|
|
}
|
1998-02-27 07:54:42 +03:00
|
|
|
|
2003-03-10 09:52:57 +03:00
|
|
|
/* Remove trailing "/" or "/." */
|
|
|
|
len = strlen (path);
|
|
|
|
if (len < 2)
|
2004-01-24 02:53:37 +03:00
|
|
|
return;
|
2003-03-10 09:52:57 +03:00
|
|
|
if (path[len - 1] == PATH_SEP) {
|
|
|
|
path[len - 1] = 0;
|
|
|
|
} else {
|
|
|
|
if (path[len - 1] == '.' && path[len - 2] == PATH_SEP) {
|
|
|
|
if (len == 2) {
|
|
|
|
path[1] = 0;
|
2004-01-24 02:53:37 +03:00
|
|
|
return;
|
2003-03-10 09:52:57 +03:00
|
|
|
} else {
|
|
|
|
path[len - 2] = 0;
|
2002-02-19 01:31:56 +03:00
|
|
|
}
|
|
|
|
}
|
2003-03-10 09:52:57 +03:00
|
|
|
}
|
1998-02-27 07:54:42 +03:00
|
|
|
|
2003-03-10 09:52:57 +03:00
|
|
|
/* Collapse "/.." with the previous part of path */
|
|
|
|
p = path;
|
|
|
|
while (p[0] && p[1] && p[2]) {
|
|
|
|
if ((p[0] != PATH_SEP || p[1] != '.' || p[2] != '.')
|
|
|
|
|| (p[3] != PATH_SEP && p[3] != 0)) {
|
|
|
|
p++;
|
|
|
|
continue;
|
1998-02-27 07:54:42 +03:00
|
|
|
}
|
|
|
|
|
2003-03-10 09:52:57 +03:00
|
|
|
/* search for the previous token */
|
|
|
|
s = p - 1;
|
|
|
|
while (s >= path && *s != PATH_SEP)
|
|
|
|
s--;
|
|
|
|
|
|
|
|
s++;
|
|
|
|
|
|
|
|
/* If the previous token is "..", we cannot collapse it */
|
|
|
|
if (s[0] == '.' && s[1] == '.' && s + 2 == p) {
|
|
|
|
p += 3;
|
|
|
|
continue;
|
1998-02-27 07:54:42 +03:00
|
|
|
}
|
|
|
|
|
2003-03-10 09:52:57 +03:00
|
|
|
if (p[3] != 0) {
|
|
|
|
if (s == path && *s == PATH_SEP) {
|
|
|
|
/* "/../foo" -> "/foo" */
|
|
|
|
strcpy (s + 1, p + 4);
|
|
|
|
} else {
|
|
|
|
/* "token/../foo" -> "foo" */
|
|
|
|
strcpy (s, p + 4);
|
1998-02-27 07:54:42 +03:00
|
|
|
}
|
2003-03-10 09:52:57 +03:00
|
|
|
p = (s > path) ? s - 1 : s;
|
|
|
|
continue;
|
|
|
|
}
|
1998-02-27 07:54:42 +03:00
|
|
|
|
2003-03-10 09:52:57 +03:00
|
|
|
/* trailing ".." */
|
|
|
|
if (s == path) {
|
|
|
|
/* "token/.." -> "." */
|
|
|
|
if (path[0] != PATH_SEP) {
|
|
|
|
path[0] = '.';
|
1998-02-27 07:54:42 +03:00
|
|
|
}
|
2003-03-10 09:52:57 +03:00
|
|
|
path[1] = 0;
|
|
|
|
} else {
|
|
|
|
/* "foo/token/.." -> "foo" */
|
|
|
|
if (s == path + 1)
|
|
|
|
s[0] = 0;
|
|
|
|
else
|
|
|
|
s[-1] = 0;
|
|
|
|
break;
|
1998-02-27 07:54:42 +03:00
|
|
|
}
|
|
|
|
|
2004-01-24 02:53:37 +03:00
|
|
|
break;
|
1998-02-27 07:54:42 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2002-07-30 03:12:31 +04:00
|
|
|
#ifdef HAVE_GET_PROCESS_STATS
|
|
|
|
# include <sys/procstats.h>
|
|
|
|
|
|
|
|
int gettimeofday (struct timeval *tp, void *tzp)
|
|
|
|
{
|
|
|
|
return get_process_stats(tp, PS_SELF, 0, 0);
|
|
|
|
}
|
|
|
|
#endif /* HAVE_GET_PROCESS_STATS */
|
|
|
|
|
1998-02-27 07:54:42 +03:00
|
|
|
#ifndef HAVE_PUTENV
|
|
|
|
|
|
|
|
/* The following piece of code was copied from the GNU C Library */
|
|
|
|
/* And is provided here for nextstep who lacks putenv */
|
|
|
|
|
|
|
|
extern char **environ;
|
|
|
|
|
|
|
|
#ifndef HAVE_GNU_LD
|
|
|
|
#define __environ environ
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
|
|
/* Put STRING, which is of the form "NAME=VALUE", in the environment. */
|
|
|
|
int
|
|
|
|
putenv (const char *string)
|
|
|
|
{
|
|
|
|
const char *const name_end = strchr (string, '=');
|
|
|
|
register size_t size;
|
|
|
|
register char **ep;
|
|
|
|
|
|
|
|
if (name_end == NULL){
|
|
|
|
/* Remove the variable from the environment. */
|
|
|
|
size = strlen (string);
|
|
|
|
for (ep = __environ; *ep != NULL; ++ep)
|
|
|
|
if (!strncmp (*ep, string, size) && (*ep)[size] == '='){
|
|
|
|
while (ep[1] != NULL){
|
|
|
|
ep[0] = ep[1];
|
|
|
|
++ep;
|
|
|
|
}
|
|
|
|
*ep = NULL;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
size = 0;
|
|
|
|
for (ep = __environ; *ep != NULL; ++ep)
|
|
|
|
if (!strncmp (*ep, string, name_end - string) &&
|
|
|
|
(*ep)[name_end - string] == '=')
|
|
|
|
break;
|
|
|
|
else
|
|
|
|
++size;
|
|
|
|
|
|
|
|
if (*ep == NULL){
|
|
|
|
static char **last_environ = NULL;
|
Glibing..... (2)
Wed Jan 27 03:17:44 1999 Timur Bakeyev <mc@bat.ru>
* Converted memory managment to Glib. Now we use g_new()/g_malloc()/
g_strdup()/g_free() routings. Also, copy_strings() replaced by
g_strconcat(), strcasecmp() -> g_strcasecmp(),and sprintf() by
g_snprintf().
* Some sequences of malloc()/sprintf() changed to g_strdup_printf().
* mad.[ch]: Modified, to work with new GLib's memory managment. Fixed
a missing #undef for tempnam, which caused dead loop. Add several new
functions to emulate GLib memory managment.
*main.c, mad.[ch]: Add a new switch "-M", which allows to redirect MAD
messages to the file.
* util.[ch], utilunix.c: Modified, deleted our variants of strcasecmp()
and strdup() - we have g_ equivalences. Remove get_full_name() - it is
similar to concat_dir_and_file(). Some other tricks with g_* functions.
* global.h: Modified, extended. Now it is main memory mangment include -
i.e. all inclusions of <stdlib.h>, <malloc.h>, <glib.h>, "fs.h", "mem.h",
"util.h" and "mad.h" done there. This elimanates problem with proper or-
der of #include's.
* All around the source - changed order of #include's, most of them gone
to global.h (see above), minor changes, like "0" -> NULL in string func-
tions.
1999-01-27 04:08:30 +03:00
|
|
|
char **new_environ = g_new (char *, size + 2);
|
1998-02-27 07:54:42 +03:00
|
|
|
if (new_environ == NULL)
|
|
|
|
return -1;
|
|
|
|
(void) memcpy ((void *) new_environ, (void *) __environ,
|
|
|
|
size * sizeof (char *));
|
|
|
|
new_environ[size] = (char *) string;
|
|
|
|
new_environ[size + 1] = NULL;
|
|
|
|
if (last_environ != NULL)
|
Glibing..... (2)
Wed Jan 27 03:17:44 1999 Timur Bakeyev <mc@bat.ru>
* Converted memory managment to Glib. Now we use g_new()/g_malloc()/
g_strdup()/g_free() routings. Also, copy_strings() replaced by
g_strconcat(), strcasecmp() -> g_strcasecmp(),and sprintf() by
g_snprintf().
* Some sequences of malloc()/sprintf() changed to g_strdup_printf().
* mad.[ch]: Modified, to work with new GLib's memory managment. Fixed
a missing #undef for tempnam, which caused dead loop. Add several new
functions to emulate GLib memory managment.
*main.c, mad.[ch]: Add a new switch "-M", which allows to redirect MAD
messages to the file.
* util.[ch], utilunix.c: Modified, deleted our variants of strcasecmp()
and strdup() - we have g_ equivalences. Remove get_full_name() - it is
similar to concat_dir_and_file(). Some other tricks with g_* functions.
* global.h: Modified, extended. Now it is main memory mangment include -
i.e. all inclusions of <stdlib.h>, <malloc.h>, <glib.h>, "fs.h", "mem.h",
"util.h" and "mad.h" done there. This elimanates problem with proper or-
der of #include's.
* All around the source - changed order of #include's, most of them gone
to global.h (see above), minor changes, like "0" -> NULL in string func-
tions.
1999-01-27 04:08:30 +03:00
|
|
|
g_free ((void *) last_environ);
|
1998-02-27 07:54:42 +03:00
|
|
|
last_environ = new_environ;
|
|
|
|
__environ = new_environ;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
*ep = (char *) string;
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
#endif /* !HAVE_PUTENV */
|
|
|
|
|