2 Various utilities - Unix variants
4 Copyright (C) 1994-2024
5 Free Software Foundation, Inc.
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/>.
35 * \brief Source: various utilities - Unix variant
48 #ifdef HAVE_SYS_PARAM_H
49 #include <sys/param.h>
51 #include <sys/types.h>
53 #ifdef HAVE_SYS_SELECT_H
54 #include <sys/select.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() */
66 #include "lib/widget.h" /* message() */
67 #include "lib/vfs/xdirentry.h"
70 #include "lib/charsets.h"
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 ****************************************************************/
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 /* --------------------------------------------------------------------------------------------- */
116 i_cache_match (int id
, int_cache
*cache
, int size
)
120 for (i
= 0; i
< size
; i
++)
121 if (cache
[i
].index
== id
)
122 return cache
[i
].string
;
126 /* --------------------------------------------------------------------------------------------- */
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
148 fprintf (stderr
, "\n\nfork () = -1\n");
159 if (waitpid (pid
, &status
, 0) > 0)
160 return WEXITSTATUS (status
) == 0 ? FORK_PARENT
: FORK_ERROR
;
167 /* --------------------------------------------------------------------------------------------- */
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 /* --------------------------------------------------------------------------------------------- */
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 /* --------------------------------------------------------------------------------------------- */
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
);
215 args_array
= str_tokenize (shell
);
220 /* --------------------------------------------------------------------------------------------- */
223 mc_pread_stream (mc_pipe_stream_t
*ps
, const fd_set
*fds
)
228 if (!FD_ISSET (ps
->fd
, fds
))
230 ps
->len
= MC_PIPE_STREAM_UNREAD
;
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
);
248 ps
->len
= MC_PIPE_ERROR_READ
;
251 else if (read_len
== 0)
253 ps
->len
= MC_PIPE_STREAM_EOF
;
260 ps
->buf
[(size_t) ps
->len
] = '\0';
266 /* --------------------------------------------------------------------------------------------- */
267 /*** public functions ****************************************************************************/
268 /* --------------------------------------------------------------------------------------------- */
271 get_owner (uid_t uid
)
275 static uid_t uid_last
;
277 name
= i_cache_match ((int) uid
, uid_cache
, UID_CACHE_SIZE
);
281 pwd
= getpwuid (uid
);
284 i_cache_add ((int) uid
, uid_cache
, UID_CACHE_SIZE
, pwd
->pw_name
, (int *) &uid_last
);
289 static char ibuf
[10];
291 g_snprintf (ibuf
, sizeof (ibuf
), "%d", (int) uid
);
296 /* --------------------------------------------------------------------------------------------- */
299 get_group (gid_t gid
)
303 static gid_t gid_last
;
305 name
= i_cache_match ((int) gid
, gid_cache
, GID_CACHE_SIZE
);
309 grp
= getgrgid (gid
);
312 i_cache_add ((int) gid
, gid_cache
, GID_CACHE_SIZE
, grp
->gr_name
, (int *) &gid_last
);
317 static char gbuf
[10];
319 g_snprintf (gbuf
, sizeof (gbuf
), "%d", (int) gid
);
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 */
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
341 * @param status exit code
345 /* __attribute__ ((noreturn)) */
351 /* --------------------------------------------------------------------------------------------- */
353 * Wrapper for signal() system call.
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.
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.
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
;
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
);
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
);
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
;
476 my_system_sigactions_t sigactions
;
478 my_system__save_sigaction_handlers (&sigactions
);
480 fork_state
= my_fork_state ();
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 */
497 /* no break here, or unreachable-code warning by no returning my_exit() */
502 my_system__restore_sigaction_handlers (&sigactions
);
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
;
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
);
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
554 mc_popen (const char *command
, gboolean read_out
, gboolean read_err
, GError
**error
)
557 const char *const argv
[] = { "/bin/sh", "sh", "-c", command
, NULL
};
559 p
= g_try_new (mc_pipe_t
, 1);
562 mc_replace_error (error
, MC_PIPE_ERROR_CREATE_PIPE
, "%s",
563 _("Cannot create pipe descriptor"));
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
,
575 mc_replace_error (error
, MC_PIPE_ERROR_CREATE_PIPE_STREAM
, "%s",
576 _("Cannot create pipe streams"));
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
;
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
616 mc_pread (mc_pipe_t
*p
, GError
**error
)
618 gboolean read_out
, read_err
;
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
;
639 FD_SET (p
->out
.fd
, &fds
);
645 FD_SET (p
->err
.fd
, &fds
);
646 maxfd
= MAX (maxfd
, p
->err
.fd
);
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
));
661 mc_pread_stream (&p
->out
, &fds
);
663 p
->out
.len
= MC_PIPE_STREAM_UNREAD
;
666 mc_pread_stream (&p
->err
, &fds
);
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;
682 mc_pstream_get_string (mc_pipe_stream_t
*ps
)
686 gboolean escape
= FALSE
;
688 g_return_val_if_fail (ps
!= NULL
, NULL
);
693 size
= ps
->len
- ps
->pos
;
698 s
= ps
->buf
+ ps
->pos
;
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')
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
724 mc_pclose (mc_pipe_t
*p
, GError
**error
)
730 mc_replace_error (error
, MC_PIPE_ERROR_READ
, "%s",
731 _("Cannot close pipe descriptor (p == NULL)"));
736 res
= close (p
->out
.fd
);
738 res
= close (p
->err
.fd
);
744 res
= waitpid (p
->child_pid
, &status
, 0);
746 while (res
< 0 && errno
== EINTR
);
749 mc_replace_error (error
, MC_PIPE_ERROR_READ
, _("Unexpected error in waitpid():\n%s"),
750 unix_error_string (errno
));
755 /* --------------------------------------------------------------------------------------------- */
758 * Perform tilde expansion if possible.
760 * @param directory pointer to the path
762 * @return newly allocated string, even if it's unchanged.
766 tilde_expand (const char *directory
)
768 struct passwd
*passwd
;
771 if (*directory
!= '~')
772 return g_strdup (directory
);
776 /* d = "~" or d = "~/" */
777 if (*p
== '\0' || IS_PATH_SEP (*p
))
779 passwd
= getpwuid (geteuid ());
780 q
= IS_PATH_SEP (*p
) ? p
+ 1 : "";
784 q
= strchr (p
, PATH_SEP
);
786 passwd
= getpwnam (p
);
791 name
= g_strndup (p
, q
- p
);
792 passwd
= getpwnam (name
);
798 /* If we can't figure the user name, leave tilde unexpanded */
800 return g_strdup (directory
);
802 return g_strconcat (passwd
->pw_dir
, PATH_SEP_STR
, q
, (char *) NULL
);
805 /* --------------------------------------------------------------------------------------------- */
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.
817 canonicalize_pathname_custom (char *path
, canon_path_flags_t flags
)
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)
832 if (lpath
[0] == '\0' || lpath
[1] == '\0')
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) != ':'))
842 while (IS_PATH_SEP (*(++s
)))
847 /* Collapse "/./" -> "/" */
848 for (p
= lpath
; *p
!= '\0';)
849 if (IS_PATH_SEP (p
[0]) && p
[1] == '.' && IS_PATH_SEP (p
[2]))
855 if ((flags
& CANON_PATH_REMSLASHDOTS
) != 0)
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)
868 /* Remove leading "./" */
869 if (lpath
[0] == '.' && IS_PATH_SEP (lpath
[1]))
871 if (lpath
[2] == '\0')
877 str_move (lpath
, lpath
+ 2);
880 /* Remove trailing "/" or "/." */
881 len
= strlen (lpath
);
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]))
898 lpath
[len
- 2] = '\0';
902 /* Collapse "/.." with the previous part of path */
903 if ((flags
& CANON_PATH_REMDOUBLEDOTS
) != 0)
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'))
918 /* search for the previous token */
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
--))
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
;
936 while (vfs_prefix
> lpath
&& !IS_PATH_SEP (*--vfs_prefix
))
938 if (IS_PATH_SEP (*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)
952 if (IS_PATH_SEP (*s
))
960 /* If the previous token is "..", we cannot collapse it */
961 if (s
[0] == '.' && s
[1] == '.' && s
+ 2 == p
)
969 if (s
== lpath
&& IS_PATH_SEP (*s
))
971 /* "/../foo" -> "/foo" */
972 str_move (s
+ 1, p
+ 4);
976 /* "token/../foo" -> "foo" */
978 if (strncmp (s
, VFS_ENCODING_PREFIX
, enc_prefix_len
) == 0)
982 enc
= vfs_get_encoding (s
, -1);
984 if (is_supported_encoding (enc
))
985 /* special case: remove encoding */
993 #endif /* HAVE_CHARSET */
997 p
= s
> lpath
? s
- 1 : s
;
1004 /* "token/.." -> "." */
1005 if (!IS_PATH_SEP (lpath
[0]))
1011 /* "foo/token/.." -> "foo" */
1015 else if (strncmp (s
, VFS_ENCODING_PREFIX
, enc_prefix_len
) == 0)
1020 enc
= vfs_get_encoding (s
, -1);
1021 ok
= is_supported_encoding (enc
);
1027 /* special case: remove encoding */
1032 /* search for the previous token */
1033 /* IS_PATH_SEP (s[-1]) */
1034 for (p
= s
- 1; p
>= lpath
&& !IS_PATH_SEP (*p
); p
--)
1040 #endif /* HAVE_CHARSET */
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)
1059 /* --------------------------------------------------------------------------------------------- */
1062 mc_realpath (const char *path
, char *resolved_path
)
1065 const char *p
= path
;
1066 gboolean absolute_path
= FALSE
;
1068 if (IS_PATH_SEP (*p
))
1070 absolute_path
= TRUE
;
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
);
1081 if (!absolute_path
&& p
[1] != '\0')
1087 #endif /* HAVE_CHARSET */
1089 #ifdef HAVE_REALPATH
1090 return realpath (path
, resolved_path
);
1093 char copy_path
[PATH_MAX
];
1094 char got_path
[PATH_MAX
];
1095 char *new_path
= got_path
;
1098 char link_path
[PATH_MAX
];
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
;
1110 strcpy (copy_path
, 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
, "");
1121 g_snprintf (got_path
, sizeof (got_path
), "%s", 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
;
1132 *new_path
++ = PATH_SEP
;
1135 /* Expand each slash-separated pathname component. */
1136 while (*path
!= '\0')
1138 /* Ignore stray "/". */
1139 if (IS_PATH_SEP (*path
))
1147 if (path
[1] == '\0' || IS_PATH_SEP (path
[1]))
1154 if (path
[2] == '\0' || IS_PATH_SEP (path
[2]))
1157 /* Ignore ".." at root. */
1158 if (new_path
== got_path
+ 1)
1160 /* Handle ".." by backing up. */
1161 while (!IS_PATH_SEP ((--new_path
)[-1]))
1167 /* Safely copy the next pathname component. */
1168 while (*path
!= '\0' && !IS_PATH_SEP (*path
))
1170 if (path
> max_path
)
1172 errno
= ENAMETOOLONG
;
1175 *new_path
++ = *path
++;
1178 /* Protect against infinite loops. */
1179 if (readlinks
++ > MAXSYMLINKS
)
1184 /* See if latest pathname component is a symlink. */
1186 n
= readlink (got_path
, link_path
, PATH_MAX
- 1);
1189 /* EINVAL means the file exists but isn't a symlink. */
1190 if (errno
!= EINVAL
)
1192 /* Make sure it's null terminated. */
1194 strcpy (resolved_path
, got_path
);
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
;
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
;
1215 /* Insert symlink contents into path. */
1216 strcat (link_path
, path
);
1217 strcpy (copy_path
, link_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]))
1226 /* Make sure it's null terminated. */
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
;
1253 ngroups
= getgroups (0, NULL
);
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);
1263 ngroups
= getgroups (ngroups
, groups
);
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 ();
1275 if (st
->st_uid
== uid
|| uid
== 0)
1278 for (i
= 0; i
< ngroups
; i
++)
1279 if (st
->st_gid
== groups
[i
])
1285 /* --------------------------------------------------------------------------------------------- */
1287 * Build filename from arguments.
1288 * Like to g_build_filename(), but respect VFS_PATH_URL_DELIMITER
1292 mc_build_filenamev (const char *first_element
, va_list args
)
1295 const char *element
= first_element
;
1299 if (first_element
== 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 *);
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
);
1337 /* --------------------------------------------------------------------------------------------- */
1339 * Build filename from arguments.
1340 * Like to g_build_filename(), but respect VFS_PATH_URL_DELIMITER
1344 mc_build_filename (const char *first_element
, ...)
1349 if (first_element
== NULL
)
1352 va_start (args
, first_element
);
1353 ret
= mc_build_filenamev (first_element
, args
);
1358 /* --------------------------------------------------------------------------------------------- */