2 Various utilities - Unix variants
4 Copyright (C) 1994, 1995, 1996, 1998, 1999, 2000, 2001, 2002, 2003,
6 The Free Software Foundation, Inc.
9 Miguel de Icaza, 1994, 1995, 1996
10 Janne Kukonlehto, 1994, 1995, 1996
11 Dugan Porter, 1994, 1995, 1996
12 Jakub Jelinek, 1994, 1995, 1996
13 Mauricio Plaza, 1994, 1995, 1996
15 The mc_realpath routine is mostly from uClibc package, written
16 by Rick Sladkey <jrs@world.std.com>
18 This file is part of the Midnight Commander.
20 The Midnight Commander is free software: you can redistribute it
21 and/or modify it under the terms of the GNU General Public License as
22 published by the Free Software Foundation, either version 3 of the License,
23 or (at your option) any later version.
25 The Midnight Commander is distributed in the hope that it will be useful,
26 but WITHOUT ANY WARRANTY; without even the implied warranty of
27 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
28 GNU General Public License for more details.
30 You should have received a copy of the GNU General Public License
31 along with this program. If not, see <http://www.gnu.org/licenses/>.
35 * \brief Source: various utilities - Unix variant
49 #include <sys/param.h>
50 #include <sys/types.h>
53 #ifdef HAVE_SYS_IOCTL_H
54 #include <sys/ioctl.h>
56 #ifdef HAVE_GET_PROCESS_STATS
57 #include <sys/procstats.h>
63 #include "lib/global.h"
64 #include "lib/vfs/vfs.h" /* VFS_ENCODING_PREFIX */
65 #include "lib/strutil.h" /* str_move() */
67 #include "lib/widget.h" /* message() */
68 #include "lib/vfs/xdirentry.h"
71 #include "lib/charsets.h"
76 /*** global variables ****************************************************************************/
78 struct sigaction startup_handler
;
80 /*** file scope macro definitions ****************************************************************/
82 #define UID_CACHE_SIZE 200
83 #define GID_CACHE_SIZE 30
85 /* Pipes are guaranteed to be able to hold at least 4096 bytes */
86 /* More than that would be unportable */
87 #define MAX_PIPE_SIZE 4096
89 /*** file scope type declarations ****************************************************************/
97 /*** file scope variables ************************************************************************/
99 static int_cache uid_cache
[UID_CACHE_SIZE
];
100 static int_cache gid_cache
[GID_CACHE_SIZE
];
102 static int error_pipe
[2]; /* File descriptors of error pipe */
103 static int old_error
; /* File descriptor of old standard error */
105 /*** file scope functions ************************************************************************/
106 /* --------------------------------------------------------------------------------------------- */
109 i_cache_match (int id
, int_cache
* cache
, int size
)
113 for (i
= 0; i
< size
; i
++)
114 if (cache
[i
].index
== id
)
115 return cache
[i
].string
;
119 /* --------------------------------------------------------------------------------------------- */
122 i_cache_add (int id
, int_cache
* cache
, int size
, char *text
, int *last
)
124 g_free (cache
[*last
].string
);
125 cache
[*last
].string
= g_strdup (text
);
126 cache
[*last
].index
= id
;
127 *last
= ((*last
) + 1) % size
;
130 /* --------------------------------------------------------------------------------------------- */
131 /*** public functions ****************************************************************************/
132 /* --------------------------------------------------------------------------------------------- */
138 static char ibuf
[10];
142 name
= i_cache_match (uid
, uid_cache
, UID_CACHE_SIZE
);
146 pwd
= getpwuid (uid
);
149 i_cache_add (uid
, uid_cache
, UID_CACHE_SIZE
, pwd
->pw_name
, &uid_last
);
154 g_snprintf (ibuf
, sizeof (ibuf
), "%d", uid
);
159 /* --------------------------------------------------------------------------------------------- */
165 static char gbuf
[10];
169 name
= i_cache_match (gid
, gid_cache
, GID_CACHE_SIZE
);
173 grp
= getgrgid (gid
);
176 i_cache_add (gid
, gid_cache
, GID_CACHE_SIZE
, grp
->gr_name
, &gid_last
);
181 g_snprintf (gbuf
, sizeof (gbuf
), "%d", gid
);
186 /* --------------------------------------------------------------------------------------------- */
187 /* Since ncurses uses a handler that automatically refreshes the */
188 /* screen after a SIGCONT, and we don't want this behavior when */
189 /* spawning a child, we save the original handler here */
192 save_stop_handler (void)
194 sigaction (SIGTSTP
, NULL
, &startup_handler
);
197 /* --------------------------------------------------------------------------------------------- */
200 my_system (int flags
, const char *shell
, const char *command
)
202 struct sigaction ignore
, save_intr
, save_quit
, save_stop
;
206 ignore
.sa_handler
= SIG_IGN
;
207 sigemptyset (&ignore
.sa_mask
);
210 sigaction (SIGINT
, &ignore
, &save_intr
);
211 sigaction (SIGQUIT
, &ignore
, &save_quit
);
213 /* Restore the original SIGTSTP handler, we don't want ncurses' */
214 /* handler messing the screen after the SIGCONT */
215 sigaction (SIGTSTP
, &startup_handler
, &save_stop
);
220 fprintf (stderr
, "\n\nfork () = -1\n");
225 signal (SIGINT
, SIG_DFL
);
226 signal (SIGQUIT
, SIG_DFL
);
227 signal (SIGTSTP
, SIG_DFL
);
228 signal (SIGCHLD
, SIG_DFL
);
230 if (flags
& EXECUTE_AS_SHELL
)
231 execl (shell
, shell
, "-c", command
, (char *) NULL
);
234 gchar
**shell_tokens
;
235 const gchar
*only_cmd
;
237 shell_tokens
= g_strsplit (shell
, " ", 2);
238 if (shell_tokens
== NULL
)
241 only_cmd
= (*shell_tokens
!= NULL
) ? *shell_tokens
: shell
;
243 execlp (only_cmd
, shell
, command
, (char *) NULL
);
246 execlp will replace current process,
247 therefore no sence in call of g_strfreev().
248 But this keeped for estetic reason :)
250 g_strfreev (shell_tokens
);
254 _exit (127); /* Exec error */
260 if (waitpid (pid
, &status
, 0) > 0)
262 status
= WEXITSTATUS (status
);
272 sigaction (SIGINT
, &save_intr
, NULL
);
273 sigaction (SIGQUIT
, &save_quit
, NULL
);
274 sigaction (SIGTSTP
, &save_stop
, NULL
);
280 /* --------------------------------------------------------------------------------------------- */
282 * Perform tilde expansion if possible.
283 * Always return a newly allocated string, even if it's unchanged.
287 tilde_expand (const char *directory
)
289 struct passwd
*passwd
;
293 if (*directory
!= '~')
294 return g_strdup (directory
);
298 /* d = "~" or d = "~/" */
299 if (!(*p
) || (*p
== PATH_SEP
))
301 passwd
= getpwuid (geteuid ());
302 q
= (*p
== PATH_SEP
) ? p
+ 1 : "";
306 q
= strchr (p
, PATH_SEP
);
309 passwd
= getpwnam (p
);
313 name
= g_strndup (p
, q
- p
);
314 passwd
= getpwnam (name
);
320 /* If we can't figure the user name, leave tilde unexpanded */
322 return g_strdup (directory
);
324 return g_strconcat (passwd
->pw_dir
, PATH_SEP_STR
, q
, (char *) NULL
);
327 /* --------------------------------------------------------------------------------------------- */
329 * Creates a pipe to hold standard error for a later analysis.
330 * The pipe can hold 4096 bytes. Make sure no more is written
331 * or a deadlock might occur.
335 open_error_pipe (void)
337 if (pipe (error_pipe
) < 0)
339 message (D_NORMAL
, _("Warning"), _("Pipe failed"));
342 if (old_error
< 0 || close (2) || dup (error_pipe
[1]) != 2)
344 message (D_NORMAL
, _("Warning"), _("Dup failed"));
346 close (error_pipe
[0]);
352 * Settng stderr in nonblocking mode as we close it earlier, than
353 * program stops. We try to read some error at program startup,
354 * but we should not block on it.
356 * TODO: make piped stdin/stderr poll()/select()able to get rid
360 fd_flags
= fcntl (error_pipe
[0], F_GETFL
, NULL
);
363 fd_flags
|= O_NONBLOCK
;
364 if (fcntl (error_pipe
[0], F_SETFL
, fd_flags
) == -1)
366 /* TODO: handle it somehow */
370 /* we never write there */
371 close (error_pipe
[1]);
375 /* --------------------------------------------------------------------------------------------- */
377 * Returns true if an error was displayed
378 * error: -1 - ignore errors, 0 - display warning, 1 - display error
379 * text is prepended to the error message from the pipe
383 close_error_pipe (int error
, const char *text
)
386 char msg
[MAX_PIPE_SIZE
];
390 if (error_pipe
[0] == -1)
393 if (error
< 0 || (error
> 0 && (error
& D_ERROR
) != 0))
396 title
= _("Warning");
399 if (dup2 (old_error
, 2) == -1)
404 message (error
, MSG_ERROR
, _("Error dup'ing old error pipe"));
408 len
= read (error_pipe
[0], msg
, MAX_PIPE_SIZE
- 1);
412 close (error_pipe
[0]);
416 return 0; /* Just ignore error message */
420 return 0; /* Nothing to show */
422 /* Show message from pipe */
423 message (error
, title
, "%s", msg
);
427 /* Show given text and possible message from pipe */
428 message (error
, title
, "%s\n%s", text
, msg
);
433 /* --------------------------------------------------------------------------------------------- */
435 * Canonicalize path, and return a new path. Do everything in place.
436 * The new path differs from path in:
437 * Multiple `/'s are collapsed to a single `/'.
438 * Leading `./'s and trailing `/.'s are removed.
439 * Trailing `/'s are removed.
440 * Non-leading `../'s and trailing `..'s are handled by removing
441 * portions of the path.
442 * Well formed UNC paths are modified only in the local part.
446 custom_canonicalize_pathname (char *path
, CANON_PATH_FLAGS flags
)
450 char *lpath
= path
; /* path without leading UNC part */
451 const size_t url_delim_len
= strlen (VFS_PATH_URL_DELIMITER
);
453 /* Detect and preserve UNC paths: //server/... */
454 if ((flags
& CANON_PATH_GUARDUNC
) && path
[0] == PATH_SEP
&& path
[1] == PATH_SEP
)
457 while (p
[0] && p
[0] != '/')
459 if (p
[0] == '/' && p
> path
+ 2)
463 if (!lpath
[0] || !lpath
[1])
466 if (flags
& CANON_PATH_JOINSLASHES
)
468 /* Collapse multiple slashes */
472 if (p
[0] == PATH_SEP
&& p
[1] == PATH_SEP
&& (p
== lpath
|| *(p
- 1) != ':'))
475 while (*(++s
) == PATH_SEP
);
482 if (flags
& CANON_PATH_JOINSLASHES
)
484 /* Collapse "/./" -> "/" */
488 if (p
[0] == PATH_SEP
&& p
[1] == '.' && p
[2] == PATH_SEP
)
495 if (flags
& CANON_PATH_REMSLASHDOTS
)
497 /* Remove trailing slashes */
498 p
= lpath
+ strlen (lpath
) - 1;
499 while (p
> lpath
&& *p
== PATH_SEP
)
501 if (p
>= lpath
- (url_delim_len
+ 1)
502 && strncmp (p
- url_delim_len
+ 1, VFS_PATH_URL_DELIMITER
, url_delim_len
) == 0)
507 /* Remove leading "./" */
508 if (lpath
[0] == '.' && lpath
[1] == PATH_SEP
)
517 str_move (lpath
, lpath
+ 2);
521 /* Remove trailing "/" or "/." */
522 len
= strlen (lpath
);
525 if (lpath
[len
- 1] == PATH_SEP
526 && (len
< url_delim_len
527 || strncmp (lpath
+ len
- url_delim_len
, VFS_PATH_URL_DELIMITER
,
528 url_delim_len
) != 0))
530 lpath
[len
- 1] = '\0';
534 if (lpath
[len
- 1] == '.' && lpath
[len
- 2] == PATH_SEP
)
543 lpath
[len
- 2] = '\0';
549 if (flags
& CANON_PATH_REMDOUBLEDOTS
)
551 const size_t enc_prefix_len
= strlen (VFS_ENCODING_PREFIX
);
553 /* Collapse "/.." with the previous part of path */
555 while (p
[0] && p
[1] && p
[2])
557 if ((p
[0] != PATH_SEP
|| p
[1] != '.' || p
[2] != '.') || (p
[3] != PATH_SEP
&& p
[3] != 0))
563 /* search for the previous token */
565 if (s
>= lpath
+ url_delim_len
- 2
566 && strncmp (s
- url_delim_len
+ 2, VFS_PATH_URL_DELIMITER
, url_delim_len
) == 0)
568 s
-= (url_delim_len
- 2);
569 while (s
>= lpath
&& *s
-- != PATH_SEP
);
574 if (s
- url_delim_len
> lpath
575 && strncmp (s
- url_delim_len
, VFS_PATH_URL_DELIMITER
, url_delim_len
) == 0)
577 char *vfs_prefix
= s
- url_delim_len
;
578 struct vfs_class
*vclass
;
580 while (vfs_prefix
> lpath
&& *--vfs_prefix
!= PATH_SEP
);
581 if (*vfs_prefix
== PATH_SEP
)
583 *(s
- url_delim_len
) = '\0';
585 vclass
= vfs_prefix_to_class (vfs_prefix
);
586 *(s
- url_delim_len
) = *VFS_PATH_URL_DELIMITER
;
590 struct vfs_s_subclass
*sub
= (struct vfs_s_subclass
*) vclass
->data
;
591 if (sub
!= NULL
&& sub
->flags
& VFS_S_REMOTE
)
607 /* If the previous token is "..", we cannot collapse it */
608 if (s
[0] == '.' && s
[1] == '.' && s
+ 2 == p
)
616 if (s
== lpath
&& *s
== PATH_SEP
)
618 /* "/../foo" -> "/foo" */
619 str_move (s
+ 1, p
+ 4);
623 /* "token/../foo" -> "foo" */
625 if ((strncmp (s
, VFS_ENCODING_PREFIX
, enc_prefix_len
) == 0)
626 && (is_supported_encoding (s
+ enc_prefix_len
)))
627 /* special case: remove encoding */
630 #endif /* HAVE_CHARSET */
633 p
= (s
> lpath
) ? s
- 1 : s
;
640 /* "token/.." -> "." */
641 if (lpath
[0] != PATH_SEP
)
649 /* "foo/token/.." -> "foo" */
653 else if ((strncmp (s
, VFS_ENCODING_PREFIX
, enc_prefix_len
) == 0)
654 && (is_supported_encoding (s
+ enc_prefix_len
)))
656 /* special case: remove encoding */
661 /* search for the previous token */
662 /* s[-1] == PATH_SEP */
664 while (p
>= lpath
&& *p
!= PATH_SEP
)
670 #endif /* HAVE_CHARSET */
673 if (s
>= lpath
+ url_delim_len
674 && strncmp (s
- url_delim_len
, VFS_PATH_URL_DELIMITER
, url_delim_len
) == 0)
687 /* --------------------------------------------------------------------------------------------- */
690 canonicalize_pathname (char *path
)
692 custom_canonicalize_pathname (path
, CANON_PATH_ALL
);
695 /* --------------------------------------------------------------------------------------------- */
697 #ifdef HAVE_GET_PROCESS_STATS
699 gettimeofday (struct timeval
*tp
, void *tzp
)
701 return get_process_stats (tp
, PS_SELF
, 0, 0);
703 #endif /* HAVE_GET_PROCESS_STATS */
705 /* --------------------------------------------------------------------------------------------- */
707 #ifndef HAVE_REALPATH
709 mc_realpath (const char *path
, char *resolved_path
)
711 char copy_path
[PATH_MAX
];
712 char link_path
[PATH_MAX
];
713 char got_path
[PATH_MAX
];
714 char *new_path
= got_path
;
719 /* Make a copy of the source path since we may need to modify it. */
720 if (strlen (path
) >= PATH_MAX
- 2)
722 errno
= ENAMETOOLONG
;
725 strcpy (copy_path
, path
);
727 max_path
= copy_path
+ PATH_MAX
- 2;
728 /* If it's a relative pathname use getwd for starters. */
732 new_path
= g_get_current_dir ();
733 if (new_path
== NULL
)
735 strcpy (got_path
, "");
739 g_snprintf (got_path
, PATH_MAX
, "%s", new_path
);
744 new_path
+= strlen (got_path
);
745 if (new_path
[-1] != '/')
753 /* Expand each slash-separated pathname component. */
754 while (*path
!= '\0')
756 /* Ignore stray "/". */
765 if (path
[1] == '\0' || path
[1] == '/')
772 if (path
[2] == '\0' || path
[2] == '/')
775 /* Ignore ".." at root. */
776 if (new_path
== got_path
+ 1)
778 /* Handle ".." by backing up. */
779 while ((--new_path
)[-1] != '/');
784 /* Safely copy the next pathname component. */
785 while (*path
!= '\0' && *path
!= '/')
789 errno
= ENAMETOOLONG
;
792 *new_path
++ = *path
++;
795 /* Protect against infinite loops. */
796 if (readlinks
++ > MAXSYMLINKS
)
801 /* See if latest pathname component is a symlink. */
803 n
= readlink (got_path
, link_path
, PATH_MAX
- 1);
806 /* EINVAL means the file exists but isn't a symlink. */
809 /* Make sure it's null terminated. */
811 strcpy (resolved_path
, got_path
);
817 /* Note: readlink doesn't add the null byte. */
819 if (*link_path
== '/')
820 /* Start over for an absolute symlink. */
823 /* Otherwise back up over this component. */
824 while (*(--new_path
) != '/');
825 /* Safe sex check. */
826 if (strlen (path
) + n
>= PATH_MAX
- 2)
828 errno
= ENAMETOOLONG
;
831 /* Insert symlink contents into path. */
832 strcat (link_path
, path
);
833 strcpy (copy_path
, link_path
);
839 /* Delete trailing slash but don't whomp a lone slash. */
840 if (new_path
!= got_path
+ 1 && new_path
[-1] == '/')
842 /* Make sure it's null terminated. */
844 strcpy (resolved_path
, got_path
);
845 return resolved_path
;
847 #endif /* HAVE_REALPATH */
849 /* --------------------------------------------------------------------------------------------- */
851 * Return the index of the permissions triplet
856 get_user_permissions (struct stat
*st
)
858 static gboolean initialized
= FALSE
;
859 static gid_t
*groups
;
868 ngroups
= getgroups (0, NULL
);
870 ngroups
= 0; /* ignore errors */
872 /* allocate space for one element in addition to what
873 * will be filled by getgroups(). */
874 groups
= g_new (gid_t
, ngroups
+ 1);
878 ngroups
= getgroups (ngroups
, groups
);
880 ngroups
= 0; /* ignore errors */
883 /* getgroups() may or may not return the effective group ID,
884 * so we always include it at the end of the list. */
885 groups
[ngroups
++] = getegid ();
890 if (st
->st_uid
== uid
|| uid
== 0)
893 for (i
= 0; i
< ngroups
; i
++)
895 if (st
->st_gid
== groups
[i
])
902 /* --------------------------------------------------------------------------------------------- */
904 * Build filename from arguments.
905 * Like to g_build_filename(), but respect VFS_PATH_URL_DELIMITER
909 mc_build_filenamev (const char *first_element
, va_list args
)
912 const char *element
= first_element
;
919 path
= g_string_new ("");
921 absolute
= (*first_element
!= '\0' && *first_element
== PATH_SEP
);
925 if (*element
== '\0')
926 element
= va_arg (args
, char *);
933 tmp_element
= g_strdup (element
);
935 element
= va_arg (args
, char *);
937 canonicalize_pathname (tmp_element
);
938 len
= strlen (tmp_element
);
939 start
= (tmp_element
[0] == PATH_SEP
) ? tmp_element
+ 1 : tmp_element
;
941 g_string_append (path
, start
);
942 if (tmp_element
[len
- 1] != PATH_SEP
&& element
!= NULL
)
943 g_string_append_c (path
, PATH_SEP
);
945 g_free (tmp_element
);
948 while (element
!= NULL
);
951 g_string_prepend_c (path
, PATH_SEP
);
953 ret
= g_string_free (path
, FALSE
);
954 canonicalize_pathname (ret
);
959 /* --------------------------------------------------------------------------------------------- */
961 * Build filename from arguments.
962 * Like to g_build_filename(), but respect VFS_PATH_URL_DELIMITER
966 mc_build_filename (const char *first_element
, ...)
971 if (first_element
== NULL
)
974 va_start (args
, first_element
);
975 ret
= mc_build_filenamev (first_element
, args
);
980 /* --------------------------------------------------------------------------------------------- */