(copy_file_file_display_progress): remove dead code.
[midnight-commander.git] / lib / utilunix.c
blob6e536874778699ab3b2f50ac297ad65068f969d3
1 /*
2 Various utilities - Unix variants
4 Copyright (C) 1994-2024
5 Free Software Foundation, Inc.
7 Written by:
8 Miguel de Icaza, 1994, 1995, 1996
9 Janne Kukonlehto, 1994, 1995, 1996
10 Dugan Porter, 1994, 1995, 1996
11 Jakub Jelinek, 1994, 1995, 1996
12 Mauricio Plaza, 1994, 1995, 1996
13 Andrew Borodin <aborodin@vmail.ru> 2010-2024
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/>.
34 /** \file utilunix.c
35 * \brief Source: various utilities - Unix variant
38 #include <config.h>
40 #include <ctype.h>
41 #include <errno.h>
42 #include <limits.h>
43 #include <signal.h>
44 #include <stdarg.h>
45 #include <stdio.h>
46 #include <stdlib.h>
47 #include <string.h>
48 #ifdef HAVE_SYS_PARAM_H
49 #include <sys/param.h>
50 #endif
51 #include <sys/types.h>
52 #include <sys/stat.h>
53 #ifdef HAVE_SYS_SELECT_H
54 #include <sys/select.h>
55 #endif
56 #include <sys/wait.h>
57 #include <pwd.h>
58 #include <grp.h>
60 #include "lib/global.h"
62 #include "lib/unixcompat.h"
63 #include "lib/vfs/vfs.h" /* VFS_ENCODING_PREFIX */
64 #include "lib/strutil.h" /* str_move(), str_tokenize() */
65 #include "lib/util.h"
66 #include "lib/widget.h" /* message() */
67 #include "lib/vfs/xdirentry.h"
69 #ifdef HAVE_CHARSET
70 #include "lib/charsets.h"
71 #endif
73 /*** global variables ****************************************************************************/
75 struct sigaction startup_handler;
77 /*** file scope macro definitions ****************************************************************/
79 #define UID_CACHE_SIZE 200
80 #define GID_CACHE_SIZE 30
82 /*** file scope type declarations ****************************************************************/
84 typedef struct
86 int index;
87 char *string;
88 } int_cache;
90 typedef enum
92 FORK_ERROR = -1,
93 FORK_CHILD,
94 FORK_PARENT,
95 } my_fork_state_t;
97 typedef struct
99 struct sigaction intr;
100 struct sigaction quit;
101 struct sigaction stop;
102 } my_system_sigactions_t;
104 /*** forward declarations (file scope functions) *************************************************/
106 /*** file scope variables ************************************************************************/
108 static int_cache uid_cache[UID_CACHE_SIZE];
109 static int_cache gid_cache[GID_CACHE_SIZE];
111 /* --------------------------------------------------------------------------------------------- */
112 /*** file scope functions ************************************************************************/
113 /* --------------------------------------------------------------------------------------------- */
115 static char *
116 i_cache_match (int id, int_cache *cache, int size)
118 int i;
120 for (i = 0; i < size; i++)
121 if (cache[i].index == id)
122 return cache[i].string;
123 return 0;
126 /* --------------------------------------------------------------------------------------------- */
128 static void
129 i_cache_add (int id, int_cache *cache, int size, char *text, int *last)
131 g_free (cache[*last].string);
132 cache[*last].string = g_strdup (text);
133 cache[*last].index = id;
134 *last = ((*last) + 1) % size;
137 /* --------------------------------------------------------------------------------------------- */
139 static my_fork_state_t
140 my_fork_state (void)
142 pid_t pid;
144 pid = my_fork ();
146 if (pid < 0)
148 fprintf (stderr, "\n\nfork () = -1\n");
149 return FORK_ERROR;
152 if (pid == 0)
153 return FORK_CHILD;
155 while (TRUE)
157 int status = 0;
159 if (waitpid (pid, &status, 0) > 0)
160 return WEXITSTATUS (status) == 0 ? FORK_PARENT : FORK_ERROR;
162 if (errno != EINTR)
163 return FORK_ERROR;
167 /* --------------------------------------------------------------------------------------------- */
169 static void
170 my_system__save_sigaction_handlers (my_system_sigactions_t *sigactions)
172 struct sigaction ignore;
174 memset (&ignore, 0, sizeof (ignore));
175 ignore.sa_handler = SIG_IGN;
176 sigemptyset (&ignore.sa_mask);
178 my_sigaction (SIGINT, &ignore, &sigactions->intr);
179 my_sigaction (SIGQUIT, &ignore, &sigactions->quit);
181 /* Restore the original SIGTSTP handler, we don't want ncurses' */
182 /* handler messing the screen after the SIGCONT */
183 my_sigaction (SIGTSTP, &startup_handler, &sigactions->stop);
186 /* --------------------------------------------------------------------------------------------- */
188 static void
189 my_system__restore_sigaction_handlers (my_system_sigactions_t *sigactions)
191 my_sigaction (SIGINT, &sigactions->intr, NULL);
192 my_sigaction (SIGQUIT, &sigactions->quit, NULL);
193 my_sigaction (SIGTSTP, &sigactions->stop, NULL);
196 /* --------------------------------------------------------------------------------------------- */
198 static GPtrArray *
199 my_system_make_arg_array (int flags, const char *shell)
201 GPtrArray *args_array;
203 if ((flags & EXECUTE_AS_SHELL) != 0)
205 args_array = g_ptr_array_new ();
206 g_ptr_array_add (args_array, (gpointer) shell);
207 g_ptr_array_add (args_array, (gpointer) "-c");
209 else if (shell == NULL || *shell == '\0')
211 args_array = g_ptr_array_new ();
212 g_ptr_array_add (args_array, NULL);
214 else
215 args_array = str_tokenize (shell);
217 return args_array;
220 /* --------------------------------------------------------------------------------------------- */
222 static void
223 mc_pread_stream (mc_pipe_stream_t *ps, const fd_set *fds)
225 size_t buf_len;
226 ssize_t read_len;
228 if (!FD_ISSET (ps->fd, fds))
230 ps->len = MC_PIPE_STREAM_UNREAD;
231 return;
234 buf_len = (size_t) ps->len;
236 if (buf_len >= MC_PIPE_BUFSIZE)
237 buf_len = ps->null_term ? MC_PIPE_BUFSIZE - 1 : MC_PIPE_BUFSIZE;
241 read_len = read (ps->fd, ps->buf, buf_len);
243 while (read_len < 0 && errno == EINTR);
245 if (read_len < 0)
247 /* reading error */
248 ps->len = MC_PIPE_ERROR_READ;
249 ps->error = errno;
251 else if (read_len == 0)
252 /* EOF */
253 ps->len = MC_PIPE_STREAM_EOF;
254 else
256 /* success */
257 ps->len = read_len;
259 if (ps->null_term)
260 ps->buf[(size_t) ps->len] = '\0';
263 ps->pos = 0;
266 /* --------------------------------------------------------------------------------------------- */
267 /*** public functions ****************************************************************************/
268 /* --------------------------------------------------------------------------------------------- */
270 const char *
271 get_owner (uid_t uid)
273 struct passwd *pwd;
274 char *name;
275 static uid_t uid_last;
277 name = i_cache_match ((int) uid, uid_cache, UID_CACHE_SIZE);
278 if (name != NULL)
279 return name;
281 pwd = getpwuid (uid);
282 if (pwd != NULL)
284 i_cache_add ((int) uid, uid_cache, UID_CACHE_SIZE, pwd->pw_name, (int *) &uid_last);
285 return pwd->pw_name;
287 else
289 static char ibuf[10];
291 g_snprintf (ibuf, sizeof (ibuf), "%d", (int) uid);
292 return ibuf;
296 /* --------------------------------------------------------------------------------------------- */
298 const char *
299 get_group (gid_t gid)
301 struct group *grp;
302 char *name;
303 static gid_t gid_last;
305 name = i_cache_match ((int) gid, gid_cache, GID_CACHE_SIZE);
306 if (name != NULL)
307 return name;
309 grp = getgrgid (gid);
310 if (grp != NULL)
312 i_cache_add ((int) gid, gid_cache, GID_CACHE_SIZE, grp->gr_name, (int *) &gid_last);
313 return grp->gr_name;
315 else
317 static char gbuf[10];
319 g_snprintf (gbuf, sizeof (gbuf), "%d", (int) gid);
320 return gbuf;
324 /* --------------------------------------------------------------------------------------------- */
325 /* Since ncurses uses a handler that automatically refreshes the */
326 /* screen after a SIGCONT, and we don't want this behavior when */
327 /* spawning a child, we save the original handler here */
329 void
330 save_stop_handler (void)
332 my_sigaction (SIGTSTP, NULL, &startup_handler);
335 /* --------------------------------------------------------------------------------------------- */
337 * Wrapper for _exit() system call.
338 * The _exit() function has gcc's attribute 'noreturn', and this is reason why we can't
339 * mock the call.
341 * @param status exit code
344 void
345 /* __attribute__ ((noreturn)) */
346 my_exit (int status)
348 _exit (status);
351 /* --------------------------------------------------------------------------------------------- */
353 * Wrapper for signal() system call.
356 sighandler_t
357 my_signal (int signum, sighandler_t handler)
359 return signal (signum, handler);
362 /* --------------------------------------------------------------------------------------------- */
364 * Wrapper for sigaction() system call.
368 my_sigaction (int signum, const struct sigaction *act, struct sigaction *oldact)
370 return sigaction (signum, act, oldact);
373 /* --------------------------------------------------------------------------------------------- */
375 * Wrapper for fork() system call.
378 pid_t
379 my_fork (void)
381 return fork ();
384 /* --------------------------------------------------------------------------------------------- */
386 * Wrapper for execvp() system call.
390 my_execvp (const char *file, char *const argv[])
392 return execvp (file, argv);
395 /* --------------------------------------------------------------------------------------------- */
397 * Wrapper for g_get_current_dir() library function.
400 char *
401 my_get_current_dir (void)
403 return g_get_current_dir ();
406 /* --------------------------------------------------------------------------------------------- */
408 * Call external programs.
410 * @parameter flags addition conditions for running external programs.
411 * @parameter shell shell (if flags contain EXECUTE_AS_SHELL), command to run otherwise.
412 * Shell (or command) will be found in paths described in PATH variable
413 * (if shell parameter doesn't begin from path delimiter)
414 * @parameter command Command for shell (or first parameter for command, if flags contain EXECUTE_AS_SHELL)
415 * @return 0 if successful, -1 otherwise
419 my_system (int flags, const char *shell, const char *command)
421 return my_systeml (flags, shell, command, NULL);
424 /* --------------------------------------------------------------------------------------------- */
426 * Call external programs with various parameters number.
428 * @parameter flags addition conditions for running external programs.
429 * @parameter shell shell (if flags contain EXECUTE_AS_SHELL), command to run otherwise.
430 * Shell (or command) will be found in paths described in PATH variable
431 * (if shell parameter doesn't begin from path delimiter)
432 * @parameter ... Command for shell with addition parameters for shell
433 * (or parameters for command, if flags contain EXECUTE_AS_SHELL).
434 * Should be NULL terminated.
435 * @return 0 if successful, -1 otherwise
439 my_systeml (int flags, const char *shell, ...)
441 GPtrArray *args_array;
442 int status = 0;
443 va_list vargs;
444 char *one_arg;
446 args_array = g_ptr_array_new ();
448 va_start (vargs, shell);
449 while ((one_arg = va_arg (vargs, char *)) != NULL)
450 g_ptr_array_add (args_array, one_arg);
451 va_end (vargs);
453 g_ptr_array_add (args_array, NULL);
454 status = my_systemv_flags (flags, shell, (char *const *) args_array->pdata);
456 g_ptr_array_free (args_array, TRUE);
458 return status;
461 /* --------------------------------------------------------------------------------------------- */
463 * Call external programs with array of strings as parameters.
465 * @parameter command command to run. Command will be found in paths described in PATH variable
466 * (if command parameter doesn't begin from path delimiter)
467 * @parameter argv Array of strings (NULL-terminated) with parameters for command
468 * @return 0 if successful, -1 otherwise
472 my_systemv (const char *command, char *const argv[])
474 my_fork_state_t fork_state;
475 int status = 0;
476 my_system_sigactions_t sigactions;
478 my_system__save_sigaction_handlers (&sigactions);
480 fork_state = my_fork_state ();
481 switch (fork_state)
483 case FORK_ERROR:
484 status = -1;
485 break;
486 case FORK_CHILD:
488 my_signal (SIGINT, SIG_DFL);
489 my_signal (SIGQUIT, SIG_DFL);
490 my_signal (SIGTSTP, SIG_DFL);
491 my_signal (SIGCHLD, SIG_DFL);
493 my_execvp (command, argv);
494 my_exit (127); /* Exec error */
496 MC_FALLTHROUGH;
497 /* no break here, or unreachable-code warning by no returning my_exit() */
498 default:
499 status = 0;
500 break;
502 my_system__restore_sigaction_handlers (&sigactions);
504 return status;
507 /* --------------------------------------------------------------------------------------------- */
509 * Call external programs with flags and with array of strings as parameters.
511 * @parameter flags addition conditions for running external programs.
512 * @parameter command shell (if flags contain EXECUTE_AS_SHELL), command to run otherwise.
513 * Shell (or command) will be found in paths described in PATH variable
514 * (if shell parameter doesn't begin from path delimiter)
515 * @parameter argv Array of strings (NULL-terminated) with parameters for command
516 * @return 0 if successful, -1 otherwise
520 my_systemv_flags (int flags, const char *command, char *const argv[])
522 const char *execute_name;
523 GPtrArray *args_array;
524 int status = 0;
526 args_array = my_system_make_arg_array (flags, command);
528 execute_name = g_ptr_array_index (args_array, 0);
530 for (; argv != NULL && *argv != NULL; argv++)
531 g_ptr_array_add (args_array, *argv);
533 g_ptr_array_add (args_array, NULL);
534 status = my_systemv (execute_name, (char *const *) args_array->pdata);
536 g_ptr_array_free (args_array, TRUE);
538 return status;
541 /* --------------------------------------------------------------------------------------------- */
543 * Create pipe and run child process.
545 * @parameter command command line of child process
546 * @parameter read_out do or don't read the stdout of child process
547 * @parameter read_err do or don't read the stderr of child process
548 * @parameter error contains pointer to object to handle error code and message
550 * @return newly created object of mc_pipe_t class in success, NULL otherwise
553 mc_pipe_t *
554 mc_popen (const char *command, gboolean read_out, gboolean read_err, GError **error)
556 mc_pipe_t *p;
557 const char *const argv[] = { "/bin/sh", "sh", "-c", command, NULL };
559 p = g_try_new (mc_pipe_t, 1);
560 if (p == NULL)
562 mc_replace_error (error, MC_PIPE_ERROR_CREATE_PIPE, "%s",
563 _("Cannot create pipe descriptor"));
564 goto ret_err;
567 p->out.fd = -1;
568 p->err.fd = -1;
570 if (!g_spawn_async_with_pipes
571 (NULL, (gchar **) argv, NULL, G_SPAWN_DO_NOT_REAP_CHILD | G_SPAWN_FILE_AND_ARGV_ZERO, NULL,
572 NULL, &p->child_pid, NULL, read_out ? &p->out.fd : NULL, read_err ? &p->err.fd : NULL,
573 error))
575 mc_replace_error (error, MC_PIPE_ERROR_CREATE_PIPE_STREAM, "%s",
576 _("Cannot create pipe streams"));
577 goto ret_err;
580 p->out.buf[0] = '\0';
581 p->out.len = MC_PIPE_BUFSIZE;
582 p->out.null_term = FALSE;
584 p->err.buf[0] = '\0';
585 p->err.len = MC_PIPE_BUFSIZE;
586 p->err.null_term = FALSE;
588 return p;
590 ret_err:
591 g_free (p);
592 return NULL;
595 /* --------------------------------------------------------------------------------------------- */
597 * Read stdout and stderr of pipe asynchronously.
599 * @parameter p pipe descriptor
601 * The lengths of read data contain in p->out.len and p->err.len.
603 * Before read, p->xxx.len is an input. It defines the number of data to read.
604 * Should not be greater than MC_PIPE_BUFSIZE.
606 * After read, p->xxx.len is an output and contains the following:
607 * p->xxx.len > 0: an actual length of read data stored in p->xxx.buf;
608 * p->xxx.len == MC_PIPE_STREAM_EOF: EOF of stream p->xxx;
609 * p->xxx.len == MC_PIPE_STREAM_UNREAD: stream p->xxx was not read;
610 * p->xxx.len == MC_PIPE_ERROR_READ: reading error, and p->xxx.errno is set appropriately.
612 * @parameter error contains pointer to object to handle error code and message
615 void
616 mc_pread (mc_pipe_t *p, GError **error)
618 gboolean read_out, read_err;
619 fd_set fds;
620 int maxfd = 0;
621 int res;
623 if (error != NULL)
624 *error = NULL;
626 read_out = p->out.fd >= 0;
627 read_err = p->err.fd >= 0;
629 if (!read_out && !read_err)
631 p->out.len = MC_PIPE_STREAM_UNREAD;
632 p->err.len = MC_PIPE_STREAM_UNREAD;
633 return;
636 FD_ZERO (&fds);
637 if (read_out)
639 FD_SET (p->out.fd, &fds);
640 maxfd = p->out.fd;
643 if (read_err)
645 FD_SET (p->err.fd, &fds);
646 maxfd = MAX (maxfd, p->err.fd);
649 /* no timeout */
650 res = select (maxfd + 1, &fds, NULL, NULL, NULL);
651 if (res < 0 && errno != EINTR)
653 mc_propagate_error (error, MC_PIPE_ERROR_READ,
655 ("Unexpected error in select() reading data from a child process:\n%s"),
656 unix_error_string (errno));
657 return;
660 if (read_out)
661 mc_pread_stream (&p->out, &fds);
662 else
663 p->out.len = MC_PIPE_STREAM_UNREAD;
665 if (read_err)
666 mc_pread_stream (&p->err, &fds);
667 else
668 p->err.len = MC_PIPE_STREAM_UNREAD;
671 /* --------------------------------------------------------------------------------------------- */
673 * Reads a line from @stream. Reading stops after an EOL or a newline. If a newline is read,
674 * it is appended to the line.
676 * @stream mc_pipe_stream_t object
678 * @return newly created GString or NULL in case of EOL;
681 GString *
682 mc_pstream_get_string (mc_pipe_stream_t *ps)
684 char *s;
685 size_t size, i;
686 gboolean escape = FALSE;
688 g_return_val_if_fail (ps != NULL, NULL);
690 if (ps->len < 0)
691 return NULL;
693 size = ps->len - ps->pos;
695 if (size == 0)
696 return NULL;
698 s = ps->buf + ps->pos;
700 if (s[0] == '\0')
701 return NULL;
703 /* find '\0' or unescaped '\n' */
704 for (i = 0; i < size && !(s[i] == '\0' || (s[i] == '\n' && !escape)); i++)
705 escape = s[i] == '\\' ? !escape : FALSE;
707 if (i != size && s[i] == '\n')
708 i++;
710 ps->pos += i;
712 return g_string_new_len (s, i);
715 /* --------------------------------------------------------------------------------------------- */
717 * Close pipe and destroy pipe descriptor.
719 * @parameter p pipe descriptor
720 * @parameter error contains pointer to object to handle error code and message
723 void
724 mc_pclose (mc_pipe_t *p, GError **error)
726 int res;
728 if (p == NULL)
730 mc_replace_error (error, MC_PIPE_ERROR_READ, "%s",
731 _("Cannot close pipe descriptor (p == NULL)"));
732 return;
735 if (p->out.fd >= 0)
736 res = close (p->out.fd);
737 if (p->err.fd >= 0)
738 res = close (p->err.fd);
742 int status;
744 res = waitpid (p->child_pid, &status, 0);
746 while (res < 0 && errno == EINTR);
748 if (res < 0)
749 mc_replace_error (error, MC_PIPE_ERROR_READ, _("Unexpected error in waitpid():\n%s"),
750 unix_error_string (errno));
752 g_free (p);
755 /* --------------------------------------------------------------------------------------------- */
758 * Perform tilde expansion if possible.
760 * @param directory pointer to the path
762 * @return newly allocated string, even if it's unchanged.
765 char *
766 tilde_expand (const char *directory)
768 struct passwd *passwd;
769 const char *p, *q;
771 if (*directory != '~')
772 return g_strdup (directory);
774 p = directory + 1;
776 /* d = "~" or d = "~/" */
777 if (*p == '\0' || IS_PATH_SEP (*p))
779 passwd = getpwuid (geteuid ());
780 q = IS_PATH_SEP (*p) ? p + 1 : "";
782 else
784 q = strchr (p, PATH_SEP);
785 if (q == NULL)
786 passwd = getpwnam (p);
787 else
789 char *name;
791 name = g_strndup (p, q - p);
792 passwd = getpwnam (name);
793 q++;
794 g_free (name);
798 /* If we can't figure the user name, leave tilde unexpanded */
799 if (passwd == NULL)
800 return g_strdup (directory);
802 return g_strconcat (passwd->pw_dir, PATH_SEP_STR, q, (char *) NULL);
805 /* --------------------------------------------------------------------------------------------- */
807 * Canonicalize path.
809 * @param path path to file
810 * @param flags canonicalization flags
812 * All modifications of @path are made in place.
813 * Well formed UNC paths are modified only in the local part.
816 void
817 canonicalize_pathname_custom (char *path, canon_path_flags_t flags)
819 char *p, *s;
820 char *lpath = path; /* path without leading UNC part */
821 const size_t url_delim_len = strlen (VFS_PATH_URL_DELIMITER);
823 /* Detect and preserve UNC paths: //server/... */
824 if ((flags & CANON_PATH_GUARDUNC) != 0 && IS_PATH_SEP (path[0]) && IS_PATH_SEP (path[1]))
826 for (p = path + 2; p[0] != '\0' && !IS_PATH_SEP (p[0]); p++)
828 if (IS_PATH_SEP (p[0]) && p > path + 2)
829 lpath = p;
832 if (lpath[0] == '\0' || lpath[1] == '\0')
833 return;
835 if ((flags & CANON_PATH_JOINSLASHES) != 0)
837 /* Collapse multiple slashes */
838 for (p = lpath; *p != '\0'; p++)
839 if (IS_PATH_SEP (p[0]) && IS_PATH_SEP (p[1]) && (p == lpath || *(p - 1) != ':'))
841 s = p + 1;
842 while (IS_PATH_SEP (*(++s)))
844 str_move (p + 1, s);
847 /* Collapse "/./" -> "/" */
848 for (p = lpath; *p != '\0';)
849 if (IS_PATH_SEP (p[0]) && p[1] == '.' && IS_PATH_SEP (p[2]))
850 str_move (p, p + 2);
851 else
852 p++;
855 if ((flags & CANON_PATH_REMSLASHDOTS) != 0)
857 size_t len;
859 /* Remove trailing slashes */
860 for (p = lpath + strlen (lpath) - 1; p > lpath && IS_PATH_SEP (*p); p--)
862 if (p >= lpath + url_delim_len - 1
863 && strncmp (p - url_delim_len + 1, VFS_PATH_URL_DELIMITER, url_delim_len) == 0)
864 break;
865 *p = '\0';
868 /* Remove leading "./" */
869 if (lpath[0] == '.' && IS_PATH_SEP (lpath[1]))
871 if (lpath[2] == '\0')
873 lpath[1] = '\0';
874 return;
877 str_move (lpath, lpath + 2);
880 /* Remove trailing "/" or "/." */
881 len = strlen (lpath);
882 if (len < 2)
883 return;
885 if (IS_PATH_SEP (lpath[len - 1])
886 && (len < url_delim_len
887 || strncmp (lpath + len - url_delim_len, VFS_PATH_URL_DELIMITER,
888 url_delim_len) != 0))
889 lpath[len - 1] = '\0';
890 else if (lpath[len - 1] == '.' && IS_PATH_SEP (lpath[len - 2]))
892 if (len == 2)
894 lpath[1] = '\0';
895 return;
898 lpath[len - 2] = '\0';
902 /* Collapse "/.." with the previous part of path */
903 if ((flags & CANON_PATH_REMDOUBLEDOTS) != 0)
905 #ifdef HAVE_CHARSET
906 const size_t enc_prefix_len = strlen (VFS_ENCODING_PREFIX);
907 #endif /* HAVE_CHARSET */
909 for (p = lpath; p[0] != '\0' && p[1] != '\0' && p[2] != '\0';)
911 if (!IS_PATH_SEP (p[0]) || p[1] != '.' || p[2] != '.'
912 || (!IS_PATH_SEP (p[3]) && p[3] != '\0'))
914 p++;
915 continue;
918 /* search for the previous token */
919 s = p - 1;
920 if (s >= lpath + url_delim_len - 2
921 && strncmp (s - url_delim_len + 2, VFS_PATH_URL_DELIMITER, url_delim_len) == 0)
923 s -= (url_delim_len - 2);
924 while (s >= lpath && !IS_PATH_SEP (*s--))
928 while (s >= lpath)
930 if (s - url_delim_len > lpath
931 && strncmp (s - url_delim_len, VFS_PATH_URL_DELIMITER, url_delim_len) == 0)
933 char *vfs_prefix = s - url_delim_len;
934 vfs_class *vclass;
936 while (vfs_prefix > lpath && !IS_PATH_SEP (*--vfs_prefix))
938 if (IS_PATH_SEP (*vfs_prefix))
939 vfs_prefix++;
940 *(s - url_delim_len) = '\0';
942 vclass = vfs_prefix_to_class (vfs_prefix);
943 *(s - url_delim_len) = *VFS_PATH_URL_DELIMITER;
945 if (vclass != NULL && (vclass->flags & VFSF_REMOTE) != 0)
947 s = vfs_prefix;
948 continue;
952 if (IS_PATH_SEP (*s))
953 break;
955 s--;
958 s++;
960 /* If the previous token is "..", we cannot collapse it */
961 if (s[0] == '.' && s[1] == '.' && s + 2 == p)
963 p += 3;
964 continue;
967 if (p[3] != '\0')
969 if (s == lpath && IS_PATH_SEP (*s))
971 /* "/../foo" -> "/foo" */
972 str_move (s + 1, p + 4);
974 else
976 /* "token/../foo" -> "foo" */
977 #ifdef HAVE_CHARSET
978 if (strncmp (s, VFS_ENCODING_PREFIX, enc_prefix_len) == 0)
980 char *enc;
982 enc = vfs_get_encoding (s, -1);
984 if (is_supported_encoding (enc))
985 /* special case: remove encoding */
986 str_move (s, p + 1);
987 else
988 str_move (s, p + 4);
990 g_free (enc);
992 else
993 #endif /* HAVE_CHARSET */
994 str_move (s, p + 4);
997 p = s > lpath ? s - 1 : s;
998 continue;
1001 /* trailing ".." */
1002 if (s == lpath)
1004 /* "token/.." -> "." */
1005 if (!IS_PATH_SEP (lpath[0]))
1006 lpath[0] = '.';
1007 lpath[1] = '\0';
1009 else
1011 /* "foo/token/.." -> "foo" */
1012 if (s == lpath + 1)
1013 s[0] = '\0';
1014 #ifdef HAVE_CHARSET
1015 else if (strncmp (s, VFS_ENCODING_PREFIX, enc_prefix_len) == 0)
1017 char *enc;
1018 gboolean ok;
1020 enc = vfs_get_encoding (s, -1);
1021 ok = is_supported_encoding (enc);
1022 g_free (enc);
1024 if (!ok)
1025 goto last;
1027 /* special case: remove encoding */
1028 s[0] = '.';
1029 s[1] = '.';
1030 s[2] = '\0';
1032 /* search for the previous token */
1033 /* IS_PATH_SEP (s[-1]) */
1034 for (p = s - 1; p >= lpath && !IS_PATH_SEP (*p); p--)
1037 if (p >= lpath)
1038 continue;
1040 #endif /* HAVE_CHARSET */
1041 else
1043 #ifdef HAVE_CHARSET
1044 last:
1045 #endif /* HAVE_CHARSET */
1046 if (s >= lpath + url_delim_len
1047 && strncmp (s - url_delim_len, VFS_PATH_URL_DELIMITER, url_delim_len) == 0)
1048 *s = '\0';
1049 else
1050 s[-1] = '\0';
1054 break;
1059 /* --------------------------------------------------------------------------------------------- */
1061 char *
1062 mc_realpath (const char *path, char *resolved_path)
1064 #ifdef HAVE_CHARSET
1065 const char *p = path;
1066 gboolean absolute_path = FALSE;
1068 if (IS_PATH_SEP (*p))
1070 absolute_path = TRUE;
1071 p++;
1074 /* ignore encoding: skip "#enc:" */
1075 if (g_str_has_prefix (p, VFS_ENCODING_PREFIX))
1077 p += strlen (VFS_ENCODING_PREFIX);
1078 p = strchr (p, PATH_SEP);
1079 if (p != NULL)
1081 if (!absolute_path && p[1] != '\0')
1082 p++;
1084 path = p;
1087 #endif /* HAVE_CHARSET */
1089 #ifdef HAVE_REALPATH
1090 return realpath (path, resolved_path);
1091 #else
1093 char copy_path[PATH_MAX];
1094 char got_path[PATH_MAX];
1095 char *new_path = got_path;
1096 char *max_path;
1097 #ifdef S_IFLNK
1098 char link_path[PATH_MAX];
1099 int readlinks = 0;
1100 int n;
1101 #endif /* S_IFLNK */
1103 /* Make a copy of the source path since we may need to modify it. */
1104 if (strlen (path) >= PATH_MAX - 2)
1106 errno = ENAMETOOLONG;
1107 return NULL;
1110 strcpy (copy_path, path);
1111 path = copy_path;
1112 max_path = copy_path + PATH_MAX - 2;
1113 /* If it's a relative pathname use getwd for starters. */
1114 if (!IS_PATH_SEP (*path))
1116 new_path = my_get_current_dir ();
1117 if (new_path == NULL)
1118 strcpy (got_path, "");
1119 else
1121 g_snprintf (got_path, sizeof (got_path), "%s", new_path);
1122 g_free (new_path);
1123 new_path = got_path;
1126 new_path += strlen (got_path);
1127 if (!IS_PATH_SEP (new_path[-1]))
1128 *new_path++ = PATH_SEP;
1130 else
1132 *new_path++ = PATH_SEP;
1133 path++;
1135 /* Expand each slash-separated pathname component. */
1136 while (*path != '\0')
1138 /* Ignore stray "/". */
1139 if (IS_PATH_SEP (*path))
1141 path++;
1142 continue;
1144 if (*path == '.')
1146 /* Ignore ".". */
1147 if (path[1] == '\0' || IS_PATH_SEP (path[1]))
1149 path++;
1150 continue;
1152 if (path[1] == '.')
1154 if (path[2] == '\0' || IS_PATH_SEP (path[2]))
1156 path += 2;
1157 /* Ignore ".." at root. */
1158 if (new_path == got_path + 1)
1159 continue;
1160 /* Handle ".." by backing up. */
1161 while (!IS_PATH_SEP ((--new_path)[-1]))
1163 continue;
1167 /* Safely copy the next pathname component. */
1168 while (*path != '\0' && !IS_PATH_SEP (*path))
1170 if (path > max_path)
1172 errno = ENAMETOOLONG;
1173 return NULL;
1175 *new_path++ = *path++;
1177 #ifdef S_IFLNK
1178 /* Protect against infinite loops. */
1179 if (readlinks++ > MAXSYMLINKS)
1181 errno = ELOOP;
1182 return NULL;
1184 /* See if latest pathname component is a symlink. */
1185 *new_path = '\0';
1186 n = readlink (got_path, link_path, PATH_MAX - 1);
1187 if (n < 0)
1189 /* EINVAL means the file exists but isn't a symlink. */
1190 if (errno != EINVAL)
1192 /* Make sure it's null terminated. */
1193 *new_path = '\0';
1194 strcpy (resolved_path, got_path);
1195 return NULL;
1198 else
1200 /* Note: readlink doesn't add the null byte. */
1201 link_path[n] = '\0';
1202 if (IS_PATH_SEP (*link_path))
1203 /* Start over for an absolute symlink. */
1204 new_path = got_path;
1205 else
1206 /* Otherwise back up over this component. */
1207 while (!IS_PATH_SEP (*(--new_path)))
1209 /* Safe sex check. */
1210 if (strlen (path) + n >= PATH_MAX - 2)
1212 errno = ENAMETOOLONG;
1213 return NULL;
1215 /* Insert symlink contents into path. */
1216 strcat (link_path, path);
1217 strcpy (copy_path, link_path);
1218 path = copy_path;
1220 #endif /* S_IFLNK */
1221 *new_path++ = PATH_SEP;
1223 /* Delete trailing slash but don't whomp a lone slash. */
1224 if (new_path != got_path + 1 && IS_PATH_SEP (new_path[-1]))
1225 new_path--;
1226 /* Make sure it's null terminated. */
1227 *new_path = '\0';
1228 strcpy (resolved_path, got_path);
1229 return resolved_path;
1231 #endif /* HAVE_REALPATH */
1234 /* --------------------------------------------------------------------------------------------- */
1236 * Return the index of the permissions triplet
1241 get_user_permissions (struct stat *st)
1243 static gboolean initialized = FALSE;
1244 static gid_t *groups;
1245 static int ngroups;
1246 static uid_t uid;
1247 int i;
1249 if (!initialized)
1251 uid = geteuid ();
1253 ngroups = getgroups (0, NULL);
1254 if (ngroups == -1)
1255 ngroups = 0; /* ignore errors */
1257 /* allocate space for one element in addition to what
1258 * will be filled by getgroups(). */
1259 groups = g_new (gid_t, ngroups + 1);
1261 if (ngroups != 0)
1263 ngroups = getgroups (ngroups, groups);
1264 if (ngroups == -1)
1265 ngroups = 0; /* ignore errors */
1268 /* getgroups() may or may not return the effective group ID,
1269 * so we always include it at the end of the list. */
1270 groups[ngroups++] = getegid ();
1272 initialized = TRUE;
1275 if (st->st_uid == uid || uid == 0)
1276 return 0;
1278 for (i = 0; i < ngroups; i++)
1279 if (st->st_gid == groups[i])
1280 return 1;
1282 return 2;
1285 /* --------------------------------------------------------------------------------------------- */
1287 * Build filename from arguments.
1288 * Like to g_build_filename(), but respect VFS_PATH_URL_DELIMITER
1291 char *
1292 mc_build_filenamev (const char *first_element, va_list args)
1294 gboolean absolute;
1295 const char *element = first_element;
1296 GString *path;
1297 char *ret;
1299 if (first_element == NULL)
1300 return NULL;
1302 absolute = IS_PATH_SEP (*first_element);
1304 path = g_string_new (absolute ? PATH_SEP_STR : "");
1308 if (*element == '\0')
1309 element = va_arg (args, char *);
1310 else
1312 char *tmp_element;
1313 const char *start;
1315 tmp_element = g_strdup (element);
1317 element = va_arg (args, char *);
1319 canonicalize_pathname (tmp_element);
1320 start = IS_PATH_SEP (tmp_element[0]) ? tmp_element + 1 : tmp_element;
1322 g_string_append (path, start);
1323 if (!IS_PATH_SEP (path->str[path->len - 1]) && element != NULL)
1324 g_string_append_c (path, PATH_SEP);
1326 g_free (tmp_element);
1329 while (element != NULL);
1331 ret = g_string_free (path, FALSE);
1332 canonicalize_pathname (ret);
1334 return ret;
1337 /* --------------------------------------------------------------------------------------------- */
1339 * Build filename from arguments.
1340 * Like to g_build_filename(), but respect VFS_PATH_URL_DELIMITER
1343 char *
1344 mc_build_filename (const char *first_element, ...)
1346 va_list args;
1347 char *ret;
1349 if (first_element == NULL)
1350 return NULL;
1352 va_start (args, first_element);
1353 ret = mc_build_filenamev (first_element, args);
1354 va_end (args);
1355 return ret;
1358 /* --------------------------------------------------------------------------------------------- */