1 /* Utilities for VFS modules.
3 Copyright (C) 1988, 1992, 1998, 1999, 2000, 2001, 2002, 2003, 2004,
4 2005, 2006, 2007 Free Software Foundation, Inc.
5 Copyright (C) 1995, 1996 Miguel de Icaza
7 This program is free software; you can redistribute it and/or
8 modify it under the terms of the GNU Library General Public License
9 as published by the Free Software Foundation; either version 2 of
10 the License, or (at your option) any later version.
12 This program is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU Library General Public License for more details.
17 You should have received a copy of the GNU Library General Public
18 License along with this program; if not, write to the Free Software
19 Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */
23 * \brief Source: Utilities for VFS modules
24 * \author Miguel de Icaza
36 #include "../src/global.h"
38 #include "../src/wtools.h" /* message() */
39 #include "../src/main.h" /* print_vfs_message */
40 #include "../src/unixcompat.h"
41 #include "../src/history.h"
46 /* Extract the hostname and username from the path */
47 /* path is in the form: [user@]hostname:port/remote-dir, e.g.:
49 * ftp://sunsite.unc.edu/pub/linux
50 * ftp://miguel@sphinx.nuclecu.unam.mx/c/nc
51 * ftp://tsx-11.mit.edu:8192/
52 * ftp://joe@foo.edu:11321/private
53 * ftp://joe:password@foo.se
55 * Returns g_malloc()ed host, user and pass they are present.
56 * If the user is empty, e.g. ftp://@roxanne/private, and URL_ALLOW_ANON
57 * is not set, then the current login name is supplied.
59 * Return value is a g_malloc()ed string with the pathname relative to the
65 vfs_split_url (const char *path
, char **host
, char **user
, int *port
,
66 char **pass
, int default_port
, int flags
)
68 struct passwd
*passwd_info
;
69 char *dir
, *colon
, *inner_colon
, *at
, *rest
;
71 char * const pcopy
= g_strdup (path
);
72 const char *pend
= pcopy
+ strlen (pcopy
);
81 if (!(flags
& URL_NOSLASH
)) {
82 /* locate path component */
83 while (*dir
!= PATH_SEP
&& *dir
)
86 retval
= g_strdup (dir
);
89 retval
= g_strdup (PATH_SEP_STR
);
92 /* search for any possible user */
93 at
= strrchr (pcopy
, '@');
95 /* We have a username */
98 inner_colon
= strchr (pcopy
, ':');
103 *pass
= g_strdup (inner_colon
);
106 *user
= g_strdup (pcopy
);
115 if (!*user
&& !(flags
& URL_ALLOW_ANON
)) {
116 passwd_info
= getpwuid (geteuid ());
117 if (passwd_info
&& passwd_info
->pw_name
)
118 *user
= g_strdup (passwd_info
->pw_name
);
120 /* This is very unlikely to happen */
121 *user
= g_strdup ("anonymous");
126 /* Check if the host comes with a port spec, if so, chop it */
128 colon
= strchr (++rest
, ']');
140 colon
= strchr (rest
, ':');
144 if (sscanf (colon
+ 1, "%d", port
) == 1) {
145 if (*port
<= 0 || *port
>= 65536)
146 *port
= default_port
;
161 *host
= g_strdup (rest
);
166 #endif /* USE_NETCODE */
169 * Look up a user or group name from a uid/gid, maintaining a cache.
170 * FIXME, for now it's a one-entry cache.
171 * FIXME2, the "-993" is to reduce the chance of a hit on the first lookup.
172 * This file should be modified for non-unix systems to do something
183 #define myuid ( my_uid < 0? (my_uid = getuid()): my_uid )
184 #define mygid ( my_gid < 0? (my_gid = getgid()): my_gid )
187 vfs_finduid (const char *uname
)
189 static int saveuid
= -993;
190 static char saveuname
[TUNMLEN
];
191 static int my_uid
= -993;
195 if (uname
[0] != saveuname
[0] /* Quick test w/o proc call */
196 ||0 != strncmp (uname
, saveuname
, TUNMLEN
)) {
197 g_strlcpy (saveuname
, uname
, TUNMLEN
);
198 pw
= getpwnam (uname
);
200 saveuid
= pw
->pw_uid
;
209 vfs_findgid (const char *gname
)
211 static int savegid
= -993;
212 static char savegname
[TGNMLEN
];
213 static int my_gid
= -993;
217 if (gname
[0] != savegname
[0] /* Quick test w/o proc call */
218 ||0 != strncmp (gname
, savegname
, TUNMLEN
)) {
219 g_strlcpy (savegname
, gname
, TUNMLEN
);
220 gr
= getgrnam (gname
);
222 savegid
= gr
->gr_gid
;
231 * Create a temporary file with a name resembling the original.
232 * This is needed e.g. for local copies requested by extfs.
233 * Some extfs scripts may look at the extension.
234 * We also protect stupid scripts agains dangerous names.
237 vfs_mkstemps (char **pname
, const char *prefix
, const char *param_basename
)
244 /* Strip directories */
245 p
= strrchr (param_basename
, PATH_SEP
);
251 /* Protection against very long names */
252 shift
= strlen (p
) - (MC_MAXPATHLEN
- 16);
256 suffix
= g_malloc (MC_MAXPATHLEN
);
258 /* Protection against unusual characters */
260 while (*p
&& (*p
!= '#')) {
261 if (strchr (".-_@", *p
) || isalnum ((unsigned char) *p
))
267 fd
= mc_mkstemps (pname
, prefix
, suffix
);
272 /* Parsing code is used by ftpfs, fish and extfs */
275 static char *columns
[MAXCOLS
]; /* Points to the string in column n */
276 static int column_ptr
[MAXCOLS
]; /* Index from 0 to the starting positions of the columns */
279 vfs_split_text (char *p
)
284 memset (columns
, 0, sizeof (columns
));
286 for (numcols
= 0; *p
&& numcols
< MAXCOLS
; numcols
++) {
287 while (*p
== ' ' || *p
== '\r' || *p
== '\n') {
291 columns
[numcols
] = p
;
292 column_ptr
[numcols
] = p
- original
;
293 while (*p
&& *p
!= ' ' && *p
!= '\r' && *p
!= '\n')
302 char *column
= columns
[idx
];
304 if (!column
|| column
[0] < '0' || column
[0] > '9')
310 /* Return 1 for MM-DD-YY and MM-DD-YYYY */
312 is_dos_date (const char *str
)
320 if (len
!= 8 && len
!= 10)
323 if (str
[2] != str
[5])
326 if (!strchr ("\\-/", (int) str
[2]))
333 is_week (const char *str
, struct tm
*tim
)
335 static const char *week
= "SunMonTueWedThuFriSat";
341 if ((pos
= strstr (week
, str
)) != NULL
) {
343 tim
->tm_wday
= (pos
- week
) / 3;
350 is_month (const char *str
, struct tm
*tim
)
352 static const char *month
= "JanFebMarAprMayJunJulAugSepOctNovDec";
358 if ((pos
= strstr (month
, str
)) != NULL
) {
360 tim
->tm_mon
= (pos
- month
) / 3;
367 * Check for possible locale's abbreviated month name (Jan..Dec).
368 * Any 3 bytes long string without digit, control and punctuation characters.
369 * isalpha() is locale specific, so it cannot be used if current
370 * locale is "C" and ftp server use Cyrillic.
371 * NB: It is assumed there are no whitespaces in month.
374 is_localized_month (const char *month
)
381 while ((i
< 3) && *month
&& !isdigit ((unsigned char) *month
)
382 && !iscntrl ((unsigned char) *month
)
383 && !ispunct ((unsigned char) *month
)) {
387 return ((i
== 3) && (*month
== 0));
391 is_time (const char *str
, struct tm
*tim
)
398 if ((p
= strchr (str
, ':')) && (p2
= strrchr (str
, ':'))) {
401 (str
, "%2d:%2d:%2d", &tim
->tm_hour
, &tim
->tm_min
,
405 if (sscanf (str
, "%2d:%2d", &tim
->tm_hour
, &tim
->tm_min
) != 2)
415 is_year (char *str
, struct tm
*tim
)
422 if (strchr (str
, ':'))
425 if (strlen (str
) != 4)
428 if (sscanf (str
, "%ld", &year
) != 1)
431 if (year
< 1900 || year
> 3000)
434 tim
->tm_year
= (int) (year
- 1900);
440 vfs_parse_filetype (const char *s
, size_t *ret_skipped
, mode_t
*ret_type
)
445 case 'd': type
= S_IFDIR
; break;
446 case 'b': type
= S_IFBLK
; break;
447 case 'c': type
= S_IFCHR
; break;
448 case 'l': type
= S_IFLNK
; break;
450 case 's': type
= S_IFSOCK
; break;
452 case 's': type
= S_IFIFO
; break;
454 #ifdef S_IFDOOR /* Solaris door */
455 case 'D': type
= S_IFDOOR
; break;
457 case 'D': type
= S_IFIFO
; break;
459 case 'p': type
= S_IFIFO
; break;
460 #ifdef S_IFNAM /* Special named files */
461 case 'n': type
= S_IFNAM
; break;
463 case 'n': type
= S_IFREG
; break;
465 case 'm': /* Don't know what these are :-) */
467 case '?': type
= S_IFREG
; break;
468 default: return FALSE
;
477 vfs_parse_fileperms (const char *s
, size_t *ret_skipped
, mode_t
*ret_perms
)
487 case 'r': perms
|= S_IRUSR
; break;
488 default: return FALSE
;
492 case 'w': perms
|= S_IWUSR
; break;
493 default: return FALSE
;
497 case 'S': perms
|= S_ISUID
; break;
498 case 's': perms
|= S_IXUSR
| S_ISUID
; break;
499 case 'x': perms
|= S_IXUSR
; break;
500 default: return FALSE
;
504 case 'r': perms
|= S_IRGRP
; break;
505 default: return FALSE
;
509 case 'w': perms
|= S_IWGRP
; break;
510 default: return FALSE
;
514 case 'S': perms
|= S_ISGID
; break;
515 case 'l': perms
|= S_ISGID
; break; /* found on Solaris */
516 case 's': perms
|= S_IXGRP
| S_ISGID
; break;
517 case 'x': perms
|= S_IXGRP
; break;
518 default: return FALSE
;
522 case 'r': perms
|= S_IROTH
; break;
523 default: return FALSE
;
527 case 'w': perms
|= S_IWOTH
; break;
528 default: return FALSE
;
532 case 'T': perms
|= S_ISVTX
; break;
533 case 't': perms
|= S_IXOTH
| S_ISVTX
; break;
534 case 'x': perms
|= S_IXOTH
; break;
535 default: return FALSE
;
537 if (*p
== '+') { /* ACLs on Solaris, HP-UX and others */
541 *ret_skipped
= p
- s
;
547 vfs_parse_filemode (const char *s
, size_t *ret_skipped
,
556 if (!vfs_parse_filetype (p
, &skipped
, &type
))
560 if (!vfs_parse_fileperms (p
, &skipped
, &perms
))
564 *ret_skipped
= p
- s
;
565 *ret_mode
= type
| perms
;
570 vfs_parse_raw_filemode (const char *s
, size_t *ret_skipped
,
574 mode_t remote_type
= 0, local_type
, perms
= 0;
579 while(*p
>= '0' && *p
<= '7')
589 while(*p
>= '0' && *p
<= '7')
592 remote_type
+= (*p
- '0');
600 $ perl -e 'use Fcntl ":mode";
601 my @modes = (S_IFDIR, S_IFBLK, S_IFCHR, S_IFLNK, S_IFREG);
602 foreach $t (@modes) { printf ("%o\n", $t); };'
603 TODO: S_IFDOOR, S_IFIFO, S_IFSOCK (if supported by os)
604 (see vfs_parse_filetype)
610 local_type
= S_IFCHR
; break;
612 local_type
= S_IFDIR
; break;
614 local_type
= S_IFBLK
; break;
616 local_type
= S_IFLNK
; break;
618 default: /* don't know what is it */
619 local_type
= S_IFREG
; break;
622 *ret_skipped
= p
- s
;
623 *ret_mode
= local_type
| perms
;
627 /* This function parses from idx in the columns[] array */
629 vfs_parse_filedate (int idx
, time_t *t
)
635 int l10n
= 0; /* Locale's abbreviated month name */
637 struct tm
*local_time
;
639 /* Let's setup default time values */
640 current_time
= time (NULL
);
641 local_time
= localtime (¤t_time
);
642 tim
.tm_mday
= local_time
->tm_mday
;
643 tim
.tm_mon
= local_time
->tm_mon
;
644 tim
.tm_year
= local_time
->tm_year
;
649 tim
.tm_isdst
= -1; /* Let mktime() try to guess correct dst offset */
653 /* We eat weekday name in case of extfs */
654 if (is_week (p
, &tim
))
658 if (is_month (p
, &tim
)) {
659 /* And we expect, it followed by day number */
661 tim
.tm_mday
= (int) atol (columns
[idx
++]);
663 return 0; /* No day */
667 3 fields max or we'll see oddities with certain file names.
668 So both year and time is not allowed.
671 But in case of extfs we allow these date formats:
673 where Mon is Jan-Dec, DD, MM, YY two digit day, month, year,
674 YYYY four digit year, hh, mm, ss two digit hour, minute or second. */
676 /* Special case with MM-DD-YY or MM-DD-YYYY */
677 if (is_dos_date (p
)) {
680 if (sscanf (p
, "%2d-%2d-%d", &d
[0], &d
[1], &d
[2]) == 3) {
681 /* Months are zero based */
698 return 0; /* sscanf failed */
700 /* Locale's abbreviated month name followed by day number */
701 if (is_localized_month (p
) && (is_num (idx
++)))
704 return 0; /* unsupported format */
708 /* Here we expect to find time or year */
709 if (is_num (idx
) && (is_time (columns
[idx
], &tim
)
710 || (got_year
= is_year (columns
[idx
], &tim
))))
713 return 0; /* Neither time nor date */
716 * If the date is less than 6 months in the past, it is shown without year
717 * other dates in the past or future are shown with year but without time
718 * This does not check for years before 1900 ... I don't know, how
719 * to represent them at all
721 if (!got_year
&& local_time
->tm_mon
< 6
722 && local_time
->tm_mon
< tim
.tm_mon
723 && tim
.tm_mon
- local_time
->tm_mon
>= 6)
727 if (l10n
|| (*t
= mktime (&tim
)) < 0)
733 vfs_parse_ls_lga (const char *p
, struct stat
*s
, char **filename
,
736 int idx
, idx2
, num_cols
;
740 const char *line
= p
;
743 if (strncmp (p
, "total", 5) == 0)
746 if (!vfs_parse_filetype (p
, &skipped
, &s
->st_mode
))
750 if (*p
== ' ') /* Notwell 4 */
753 if (strlen (p
) <= 8 || p
[8] != ']')
755 /* Should parse here the Notwell permissions :) */
756 if (S_ISDIR (s
->st_mode
))
758 (S_IRUSR
| S_IRGRP
| S_IROTH
| S_IWUSR
| S_IXUSR
| S_IXGRP
761 s
->st_mode
|= (S_IRUSR
| S_IRGRP
| S_IROTH
| S_IWUSR
);
767 if (!vfs_parse_fileperms (p
, &lc_skipped
, &perms
))
773 p_copy
= g_strdup (p
);
774 num_cols
= vfs_split_text (p_copy
);
776 s
->st_nlink
= atol (columns
[0]);
777 if (s
->st_nlink
<= 0)
781 s
->st_uid
= vfs_finduid (columns
[1]);
783 s
->st_uid
= (uid_t
) atol (columns
[1]);
785 /* Mhm, the ls -lg did not produce a group field */
786 for (idx
= 3; idx
<= 5; idx
++)
787 if (is_month (columns
[idx
], NULL
) || is_week (columns
[idx
], NULL
)
788 || is_dos_date (columns
[idx
])
789 || is_localized_month (columns
[idx
]))
793 || (idx
== 5 && !S_ISCHR (s
->st_mode
) && !S_ISBLK (s
->st_mode
)))
796 /* We don't have gid */
798 || (idx
== 4 && (S_ISCHR (s
->st_mode
) || S_ISBLK (s
->st_mode
))))
801 /* We have gid field */
803 s
->st_gid
= (gid_t
) atol (columns
[2]);
805 s
->st_gid
= vfs_findgid (columns
[2]);
810 if (S_ISCHR (s
->st_mode
) || S_ISBLK (s
->st_mode
)) {
813 /* Corner case: there is no whitespace(s) between maj & min */
814 if (!is_num (idx2
) && idx2
== 2) {
815 if (!is_num (++idx2
) || sscanf (columns
[idx2
], " %d,%d", &min
, &min
) != 2)
818 if (!is_num (idx2
) || sscanf (columns
[idx2
], " %d,", &maj
) != 1)
821 if (!is_num (++idx2
) || sscanf (columns
[idx2
], " %d", &min
) != 1)
824 #ifdef HAVE_STRUCT_STAT_ST_RDEV
825 s
->st_rdev
= makedev (maj
, min
);
830 /* Common file size */
835 s
->st_size
= (off_t
) atoll (columns
[idx2
]);
837 s
->st_size
= (off_t
) atof (columns
[idx2
]);
839 #ifdef HAVE_STRUCT_STAT_ST_RDEV
844 idx
= vfs_parse_filedate (idx
, &s
->st_mtime
);
847 /* Use resulting time value */
848 s
->st_atime
= s
->st_ctime
= s
->st_mtime
;
849 /* s->st_dev and s->st_ino must be initialized by vfs_s_new_inode () */
850 #ifdef HAVE_STRUCT_STAT_ST_BLKSIZE
853 #ifdef HAVE_STRUCT_STAT_ST_BLOCKS
854 s
->st_blocks
= (s
->st_size
+ 511) / 512;
857 for (i
= idx
+ 1, idx2
= 0; i
< num_cols
; i
++)
858 if (strcmp (columns
[i
], "->") == 0) {
863 if (((S_ISLNK (s
->st_mode
) || (num_cols
== idx
+ 3 && s
->st_nlink
> 1))) /* Maybe a hardlink? (in extfs) */
868 g_strndup (p
+ column_ptr
[idx
],
869 column_ptr
[idx2
] - column_ptr
[idx
] - 1);
872 t
= g_strdup (p
+ column_ptr
[idx2
+ 1]);
876 /* Extract the filename from the string copy, not from the columns
877 * this way we have a chance of entering hidden directories like ". ."
881 * filename = g_strdup (columns [idx++]);
884 t
= g_strdup (p
+ column_ptr
[idx
]);
893 if ((--p2
> 0) && (t
[p2
] == '\r' || t
[p2
] == '\n'))
895 if ((--p2
> 0) && (t
[p2
] == '\r' || t
[p2
] == '\n'))
904 static int errorcount
= 0;
906 if (++errorcount
< 5) {
907 message (D_ERROR
, _("Cannot parse:"), "%s",
908 (p_copy
&& *p_copy
) ? p_copy
: line
);
909 } else if (errorcount
== 5)
910 message (D_ERROR
, MSG_ERROR
,
911 _("More parsing errors will be ignored."));
919 vfs_die (const char *m
)
921 message (D_ERROR
, _("Internal error:"), "%s", m
);
926 vfs_get_password (const char *msg
)
928 return input_dialog (msg
, _("Password:"), MC_HISTORY_VFS_PASSWORD
, INPUT_PASSWORD
);