2 Mount helper utility for Linux CIFS VFS (virtual filesystem) client
3 Copyright (C) 2003,2008 Steve French (sfrench@us.ibm.com)
4 Copyright (C) 2008 Jeremy Allison (jra@samba.org)
6 This program is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 3 of the License, or
9 (at your option) any later version.
11 This program is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
16 You should have received a copy of the GNU General Public License
17 along with this program. If not, see <http://www.gnu.org/licenses/>. */
29 #include <sys/types.h>
30 #include <sys/mount.h>
32 #include <sys/utsname.h>
33 #include <sys/socket.h>
34 #include <arpa/inet.h>
44 #define MOUNT_CIFS_VERSION_MAJOR "1"
45 #define MOUNT_CIFS_VERSION_MINOR "12"
47 #ifndef MOUNT_CIFS_VENDOR_SUFFIX
49 #include "include/version.h"
50 #ifdef SAMBA_VERSION_VENDOR_SUFFIX
51 #define MOUNT_CIFS_VENDOR_SUFFIX "-"SAMBA_VERSION_OFFICIAL_STRING"-"SAMBA_VERSION_VENDOR_SUFFIX
53 #define MOUNT_CIFS_VENDOR_SUFFIX "-"SAMBA_VERSION_OFFICIAL_STRING
54 #endif /* SAMBA_VERSION_OFFICIAL_STRING and SAMBA_VERSION_VENDOR_SUFFIX */
56 #define MOUNT_CIFS_VENDOR_SUFFIX ""
57 #endif /* _SAMBA_BUILD_ */
58 #endif /* MOUNT_CIFS_VENDOR_SUFFIX */
61 #include "include/config.h"
72 #define MAX_UNC_LEN 1024
74 #define CONST_DISCARD(type, ptr) ((type) ((void *) (ptr)))
77 #define SAFE_FREE(x) do { if ((x) != NULL) {free(x); x=NULL;} } while(0)
80 #define MOUNT_PASSWD_SIZE 64
81 #define DOMAIN_SIZE 64
83 /* currently maximum length of IPv6 address string */
84 #define MAX_ADDRESS_LEN INET6_ADDRSTRLEN
86 const char *thisprogram
;
88 static int got_password
= 0;
89 static int got_user
= 0;
90 static int got_domain
= 0;
91 static int got_ip
= 0;
92 static int got_unc
= 0;
93 static int got_uid
= 0;
94 static int got_gid
= 0;
95 static char * user_name
= NULL
;
96 static char * mountpassword
= NULL
;
97 char * domain_name
= NULL
;
98 char * prefixpath
= NULL
;
100 /* glibc doesn't have strlcpy, strlcat. Ensure we do. JRA. We
101 * don't link to libreplace so need them here. */
103 /* like strncpy but does not 0 fill the buffer and always null
104 * terminates. bufsize is the size of the destination buffer */
107 static size_t strlcpy(char *d
, const char *s
, size_t bufsize
)
109 size_t len
= strlen(s
);
111 if (bufsize
<= 0) return 0;
112 if (len
>= bufsize
) len
= bufsize
-1;
119 /* like strncat but does not 0 fill the buffer and always null
120 * terminates. bufsize is the length of the buffer, which should
121 * be one more than the maximum resulting string length */
124 static size_t strlcat(char *d
, const char *s
, size_t bufsize
)
126 size_t len1
= strlen(d
);
127 size_t len2
= strlen(s
);
128 size_t ret
= len1
+ len2
;
130 if (len1
+len2
>= bufsize
) {
131 if (bufsize
< (len1
+1)) {
134 len2
= bufsize
- (len1
+1);
137 memcpy(d
+len1
, s
, len2
);
147 open nofollow - avoid symlink exposure?
148 get owner of dir see if matches self or if root
149 call system(umount argv) etc.
153 static char * check_for_domain(char **);
156 static void mount_cifs_usage(void)
158 printf("\nUsage: %s <remotetarget> <dir> -o <options>\n", thisprogram
);
159 printf("\nMount the remote target, specified as a UNC name,");
160 printf(" to a local directory.\n\nOptions:\n");
161 printf("\tuser=<arg>\n\tpass=<arg>\n\tdom=<arg>\n");
162 printf("\nLess commonly used options:");
163 printf("\n\tcredentials=<filename>,guest,perm,noperm,setuids,nosetuids,rw,ro,");
164 printf("\n\tsep=<char>,iocharset=<codepage>,suid,nosuid,exec,noexec,serverino,");
165 printf("\n\tmapchars,nomapchars,nolock,servernetbiosname=<SRV_RFC1001NAME>");
166 printf("\n\tdirectio,nounix,cifsacl,sec=<authentication mechanism>,sign");
167 printf("\n\nOptions not needed for servers supporting CIFS Unix extensions");
168 printf("\n\t(e.g. unneeded for mounts to most Samba versions):");
169 printf("\n\tuid=<uid>,gid=<gid>,dir_mode=<mode>,file_mode=<mode>,sfu");
170 printf("\n\nRarely used options:");
171 printf("\n\tport=<tcpport>,rsize=<size>,wsize=<size>,unc=<unc_name>,ip=<ip_address>,");
172 printf("\n\tdev,nodev,nouser_xattr,netbiosname=<OUR_RFC1001NAME>,hard,soft,intr,");
173 printf("\n\tnointr,ignorecase,noposixpaths,noacl,prefixpath=<path>,nobrl");
174 printf("\n\tin6_addr");
175 printf("\n\nOptions are described in more detail in the manual page");
176 printf("\n\tman 8 mount.cifs\n");
177 printf("\nTo display the version number of the mount helper:");
178 printf("\n\t%s -V\n",thisprogram
);
180 SAFE_FREE(mountpassword
);
184 /* caller frees username if necessary */
185 static char * getusername(void) {
186 char *username
= NULL
;
187 struct passwd
*password
= getpwuid(getuid());
190 username
= password
->pw_name
;
195 static int open_cred_file(char * file_name
)
201 fs
= fopen(file_name
,"r");
204 line_buf
= (char *)malloc(4096);
205 if(line_buf
== NULL
) {
210 while(fgets(line_buf
,4096,fs
)) {
211 /* parse line from credential file */
213 /* eat leading white space */
214 for(i
=0;i
<4086;i
++) {
215 if((line_buf
[i
] != ' ') && (line_buf
[i
] != '\t'))
217 /* if whitespace - skip past it */
219 if (strncasecmp("username",line_buf
+i
,8) == 0) {
220 temp_val
= strchr(line_buf
+ i
,'=');
222 /* go past equals sign */
224 for(length
= 0;length
<4087;length
++) {
225 if ((temp_val
[length
] == '\n')
226 || (temp_val
[length
] == '\0')) {
227 temp_val
[length
] = '\0';
232 printf("mount.cifs failed due to malformed username in credentials file");
233 memset(line_buf
,0,4096);
237 user_name
= (char *)calloc(1 + length
,1);
238 /* BB adding free of user_name string before exit,
239 not really necessary but would be cleaner */
240 strlcpy(user_name
,temp_val
, length
+1);
243 } else if (strncasecmp("password",line_buf
+i
,8) == 0) {
244 temp_val
= strchr(line_buf
+i
,'=');
246 /* go past equals sign */
248 for(length
= 0;length
<MOUNT_PASSWD_SIZE
+1;length
++) {
249 if ((temp_val
[length
] == '\n')
250 || (temp_val
[length
] == '\0')) {
251 temp_val
[length
] = '\0';
255 if(length
> MOUNT_PASSWD_SIZE
) {
256 printf("mount.cifs failed: password in credentials file too long\n");
257 memset(line_buf
,0, 4096);
260 if(mountpassword
== NULL
) {
261 mountpassword
= (char *)calloc(MOUNT_PASSWD_SIZE
+1,1);
263 memset(mountpassword
,0,MOUNT_PASSWD_SIZE
);
265 strlcpy(mountpassword
,temp_val
,MOUNT_PASSWD_SIZE
+1);
270 } else if (strncasecmp("domain",line_buf
+i
,6) == 0) {
271 temp_val
= strchr(line_buf
+i
,'=');
273 /* go past equals sign */
276 printf("\nDomain %s\n",temp_val
);
277 for(length
= 0;length
<DOMAIN_SIZE
+1;length
++) {
278 if ((temp_val
[length
] == '\n')
279 || (temp_val
[length
] == '\0')) {
280 temp_val
[length
] = '\0';
284 if(length
> DOMAIN_SIZE
) {
285 printf("mount.cifs failed: domain in credentials file too long\n");
288 if(domain_name
== NULL
) {
289 domain_name
= (char *)calloc(DOMAIN_SIZE
+1,1);
291 memset(domain_name
,0,DOMAIN_SIZE
);
293 strlcpy(domain_name
,temp_val
,DOMAIN_SIZE
+1);
306 static int get_password_from_file(int file_descript
, char * filename
)
312 if(mountpassword
== NULL
)
313 mountpassword
= (char *)calloc(MOUNT_PASSWD_SIZE
+1,1);
315 memset(mountpassword
, 0, MOUNT_PASSWD_SIZE
);
317 if (mountpassword
== NULL
) {
318 printf("malloc failed\n");
322 if(filename
!= NULL
) {
323 file_descript
= open(filename
, O_RDONLY
);
324 if(file_descript
< 0) {
325 printf("mount.cifs failed. %s attempting to open password file %s\n",
326 strerror(errno
),filename
);
330 /* else file already open and fd provided */
332 for(i
=0;i
<MOUNT_PASSWD_SIZE
;i
++) {
333 rc
= read(file_descript
,&c
,1);
335 printf("mount.cifs failed. Error %s reading password file\n",strerror(errno
));
337 close(file_descript
);
340 if(mountpassword
[0] == 0) {
342 printf("\nWarning: null password used since cifs password file empty");
345 } else /* read valid character */ {
346 if((c
== 0) || (c
== '\n')) {
347 mountpassword
[i
] = '\0';
350 mountpassword
[i
] = c
;
353 if((i
== MOUNT_PASSWD_SIZE
) && (verboseflag
)) {
354 printf("\nWarning: password longer than %d characters specified in cifs password file",
358 if(filename
!= NULL
) {
359 close(file_descript
);
365 static int parse_options(char ** optionsp
, int * filesys_flags
)
368 char * percent_char
= NULL
;
370 char * next_keyword
= NULL
;
378 if (!optionsp
|| !*optionsp
)
383 printf("parsing options: %s\n", data
);
385 /* BB fixme check for separator override BB */
389 snprintf(user
,sizeof(user
),"%u",getuid());
391 snprintf(group
,sizeof(group
),"%u",getgid());
394 /* while ((data = strsep(&options, ",")) != NULL) { */
395 while(data
!= NULL
) {
396 /* check if ends with trailing comma */
400 /* format is keyword=value,keyword2=value2,keyword3=value3 etc.) */
401 /* data = next keyword */
402 /* value = next value ie stuff after equal sign */
404 next_keyword
= strchr(data
,','); /* BB handle sep= */
406 /* temporarily null terminate end of keyword=value pair */
410 /* temporarily null terminate keyword to make keyword and value distinct */
411 if ((value
= strchr(data
, '=')) != NULL
) {
416 if (strncmp(data
, "users",5) == 0) {
417 if(!value
|| !*value
) {
420 } else if (strncmp(data
, "user_xattr",10) == 0) {
421 /* do nothing - need to skip so not parsed as user name */
422 } else if (strncmp(data
, "user", 4) == 0) {
424 if (!value
|| !*value
) {
425 if(data
[4] == '\0') {
427 printf("\nskipping empty user mount parameter\n");
428 /* remove the parm since it would otherwise be confusing
429 to the kernel code which would think it was a real username */
432 printf("username specified with no parameter\n");
434 return 1; /* needs_arg; */
437 if (strnlen(value
, 260) < 260) {
439 percent_char
= strchr(value
,'%');
442 if(mountpassword
== NULL
)
443 mountpassword
= (char *)calloc(MOUNT_PASSWD_SIZE
+1,1);
446 printf("\nmount.cifs warning - password specified twice\n");
449 strlcpy(mountpassword
, percent_char
,MOUNT_PASSWD_SIZE
+1);
450 /* remove password from username */
451 while(*percent_char
!= 0) {
457 /* this is only case in which the user
458 name buf is not malloc - so we have to
459 check for domain name embedded within
460 the user name here since the later
461 call to check_for_domain will not be
463 domain_name
= check_for_domain(&value
);
465 printf("username too long\n");
470 } else if (strncmp(data
, "pass", 4) == 0) {
471 if (!value
|| !*value
) {
473 printf("\npassword specified twice, ignoring second\n");
476 } else if (strnlen(value
, 17) < 17) {
478 printf("\nmount.cifs warning - password specified twice\n");
481 printf("password too long\n");
485 } else if (strncmp(data
, "sec", 3) == 0) {
487 if (!strcmp(value
, "none"))
490 } else if (strncmp(data
, "ip", 2) == 0) {
491 if (!value
|| !*value
) {
492 printf("target ip address argument missing");
493 } else if (strnlen(value
, MAX_ADDRESS_LEN
) <= MAX_ADDRESS_LEN
) {
495 printf("ip address %s override specified\n",value
);
498 printf("ip address too long\n");
502 } else if ((strncmp(data
, "unc", 3) == 0)
503 || (strncmp(data
, "target", 6) == 0)
504 || (strncmp(data
, "path", 4) == 0)) {
505 if (!value
|| !*value
) {
506 printf("invalid path to network resource\n");
508 return 1; /* needs_arg; */
509 } else if(strnlen(value
,5) < 5) {
510 printf("UNC name too short");
513 if (strnlen(value
, 300) < 300) {
515 if (strncmp(value
, "//", 2) == 0) {
517 printf("unc name specified twice, ignoring second\n");
520 } else if (strncmp(value
, "\\\\", 2) != 0) {
521 printf("UNC Path does not begin with // or \\\\ \n");
526 printf("unc name specified twice, ignoring second\n");
531 printf("CIFS: UNC name too long\n");
535 } else if ((strncmp(data
, "domain", 3) == 0)
536 || (strncmp(data
, "workgroup", 5) == 0)) {
537 if (!value
|| !*value
) {
538 printf("CIFS: invalid domain name\n");
540 return 1; /* needs_arg; */
542 if (strnlen(value
, DOMAIN_SIZE
+1) < DOMAIN_SIZE
+1) {
545 printf("domain name too long\n");
549 } else if (strncmp(data
, "cred", 4) == 0) {
550 if (value
&& *value
) {
551 rc
= open_cred_file(value
);
553 printf("error %d (%s) opening credential file %s\n",
554 rc
, strerror(rc
), value
);
559 printf("invalid credential file name specified\n");
563 } else if (strncmp(data
, "uid", 3) == 0) {
564 if (value
&& *value
) {
566 if (!isdigit(*value
)) {
569 if (!(pw
= getpwnam(value
))) {
570 printf("bad user name \"%s\"\n", value
);
573 snprintf(user
, sizeof(user
), "%u", pw
->pw_uid
);
575 strlcpy(user
,value
,sizeof(user
));
579 } else if (strncmp(data
, "gid", 3) == 0) {
580 if (value
&& *value
) {
582 if (!isdigit(*value
)) {
585 if (!(gr
= getgrnam(value
))) {
586 printf("bad group name \"%s\"\n", value
);
589 snprintf(group
, sizeof(group
), "%u", gr
->gr_gid
);
591 strlcpy(group
,value
,sizeof(group
));
595 /* fmask and dmask synonyms for people used to smbfs syntax */
596 } else if (strcmp(data
, "file_mode") == 0 || strcmp(data
, "fmask")==0) {
597 if (!value
|| !*value
) {
598 printf ("Option '%s' requires a numerical argument\n", data
);
603 if (value
[0] != '0') {
604 printf ("WARNING: '%s' not expressed in octal.\n", data
);
607 if (strcmp (data
, "fmask") == 0) {
608 printf ("WARNING: CIFS mount option 'fmask' is deprecated. Use 'file_mode' instead.\n");
609 data
= "file_mode"; /* BB fix this */
611 } else if (strcmp(data
, "dir_mode") == 0 || strcmp(data
, "dmask")==0) {
612 if (!value
|| !*value
) {
613 printf ("Option '%s' requires a numerical argument\n", data
);
618 if (value
[0] != '0') {
619 printf ("WARNING: '%s' not expressed in octal.\n", data
);
622 if (strcmp (data
, "dmask") == 0) {
623 printf ("WARNING: CIFS mount option 'dmask' is deprecated. Use 'dir_mode' instead.\n");
626 /* the following eight mount options should be
627 stripped out from what is passed into the kernel
628 since these eight options are best passed as the
629 mount flags rather than redundantly to the kernel
630 and could generate spurious warnings depending on the
631 level of the corresponding cifs vfs kernel code */
632 } else if (strncmp(data
, "nosuid", 6) == 0) {
633 *filesys_flags
|= MS_NOSUID
;
634 } else if (strncmp(data
, "suid", 4) == 0) {
635 *filesys_flags
&= ~MS_NOSUID
;
636 } else if (strncmp(data
, "nodev", 5) == 0) {
637 *filesys_flags
|= MS_NODEV
;
638 } else if ((strncmp(data
, "nobrl", 5) == 0) ||
639 (strncmp(data
, "nolock", 6) == 0)) {
640 *filesys_flags
&= ~MS_MANDLOCK
;
641 } else if (strncmp(data
, "dev", 3) == 0) {
642 *filesys_flags
&= ~MS_NODEV
;
643 } else if (strncmp(data
, "noexec", 6) == 0) {
644 *filesys_flags
|= MS_NOEXEC
;
645 } else if (strncmp(data
, "exec", 4) == 0) {
646 *filesys_flags
&= ~MS_NOEXEC
;
647 } else if (strncmp(data
, "guest", 5) == 0) {
649 } else if (strncmp(data
, "ro", 2) == 0) {
650 *filesys_flags
|= MS_RDONLY
;
651 } else if (strncmp(data
, "rw", 2) == 0) {
652 *filesys_flags
&= ~MS_RDONLY
;
653 } else if (strncmp(data
, "remount", 7) == 0) {
654 *filesys_flags
|= MS_REMOUNT
;
655 } /* else if (strnicmp(data, "port", 4) == 0) {
656 if (value && *value) {
658 simple_strtoul(value, &value, 0);
660 } else if (strnicmp(data, "rsize", 5) == 0) {
661 if (value && *value) {
663 simple_strtoul(value, &value, 0);
665 } else if (strnicmp(data, "wsize", 5) == 0) {
666 if (value && *value) {
668 simple_strtoul(value, &value, 0);
670 } else if (strnicmp(data, "version", 3) == 0) {
672 printf("CIFS: Unknown mount option %s\n",data);
673 } */ /* nothing to do on those four mount options above.
674 Just pass to kernel and ignore them here */
676 /* Copy (possibly modified) option to out */
677 word_len
= strlen(data
);
679 word_len
+= 1 + strlen(value
);
681 out
= (char *)realloc(out
, out_len
+ word_len
+ 2);
688 strlcat(out
, ",", out_len
+ word_len
+ 2);
693 snprintf(out
+ out_len
, word_len
+ 1, "%s=%s", data
, value
);
695 snprintf(out
+ out_len
, word_len
+ 1, "%s", data
);
696 out_len
= strlen(out
);
702 /* special-case the uid and gid */
704 word_len
= strlen(user
);
706 out
= (char *)realloc(out
, out_len
+ word_len
+ 6);
713 strlcat(out
, ",", out_len
+ word_len
+ 6);
716 snprintf(out
+ out_len
, word_len
+ 5, "uid=%s", user
);
717 out_len
= strlen(out
);
720 word_len
= strlen(group
);
722 out
= (char *)realloc(out
, out_len
+ 1 + word_len
+ 6);
729 strlcat(out
, ",", out_len
+ word_len
+ 6);
732 snprintf(out
+ out_len
, word_len
+ 5, "gid=%s", group
);
733 out_len
= strlen(out
);
736 SAFE_FREE(*optionsp
);
741 /* replace all (one or more) commas with double commas */
742 static void check_for_comma(char ** ppasswrd
)
747 int number_of_commas
= 0;
762 if(number_of_commas
== 0)
764 if(number_of_commas
> MOUNT_PASSWD_SIZE
) {
765 /* would otherwise overflow the mount options buffer */
766 printf("\nInvalid password. Password contains too many commas.\n");
770 new_pass_buf
= (char *)malloc(len
+number_of_commas
+1);
771 if(new_pass_buf
== NULL
)
774 for(i
=0,j
=0;i
<len
;i
++,j
++) {
775 new_pass_buf
[j
] = pass
[i
];
778 new_pass_buf
[j
] = pass
[i
];
781 new_pass_buf
[len
+number_of_commas
] = 0;
783 SAFE_FREE(*ppasswrd
);
784 *ppasswrd
= new_pass_buf
;
789 /* Usernames can not have backslash in them and we use
790 [BB check if usernames can have forward slash in them BB]
791 backslash as domain\user separator character
793 static char * check_for_domain(char **ppuser
)
795 char * original_string
;
805 original_string
= *ppuser
;
807 if (original_string
== NULL
)
810 original_len
= strlen(original_string
);
812 usernm
= strchr(*ppuser
,'/');
813 if (usernm
== NULL
) {
814 usernm
= strchr(*ppuser
,'\\');
820 printf("Domain name specified twice. Username probably malformed\n");
826 if (domainnm
[0] != 0) {
829 printf("null domain\n");
831 len
= strlen(domainnm
);
832 /* reset domainm to new buffer, and copy
833 domain name into it */
834 domainnm
= (char *)malloc(len
+1);
838 strlcpy(domainnm
,*ppuser
,len
+1);
840 /* move_string(*ppuser, usernm+1) */
841 len
= strlen(usernm
+1);
843 if(len
>= original_len
) {
844 /* should not happen */
848 for(i
=0;i
<original_len
;i
++) {
850 original_string
[i
] = usernm
[i
+1];
851 else /* stuff with commas to remove last parm */
852 original_string
[i
] = ',';
855 /* BB add check for more than one slash?
863 /* replace all occurances of "from" in a string with "to" */
864 static void replace_char(char *string
, char from
, char to
, int maxlen
)
866 char *lastchar
= string
+ maxlen
;
868 string
= strchr(string
, from
);
871 if (string
>= lastchar
)
877 /* Note that caller frees the returned buffer if necessary */
878 static struct addrinfo
*
879 parse_server(char ** punc_name
)
881 char * unc_name
= *punc_name
;
882 int length
= strnlen(unc_name
, MAX_UNC_LEN
);
884 struct addrinfo
*addrlist
;
887 if(length
> (MAX_UNC_LEN
- 1)) {
888 printf("mount error: UNC name too long");
891 if ((strncasecmp("cifs://", unc_name
, 7) == 0) ||
892 (strncasecmp("smb://", unc_name
, 6) == 0)) {
893 printf("\nMounting cifs URL not implemented yet. Attempt to mount %s\n", unc_name
);
898 /* BB add code to find DFS root here */
899 printf("\nMounting the DFS root for domain not implemented yet\n");
902 if(strncmp(unc_name
,"//",2) && strncmp(unc_name
,"\\\\",2)) {
903 /* check for nfs syntax ie server:share */
904 share
= strchr(unc_name
,':');
906 *punc_name
= (char *)malloc(length
+3);
907 if(*punc_name
== NULL
) {
908 /* put the original string back if
910 *punc_name
= unc_name
;
914 strlcpy((*punc_name
)+2,unc_name
,length
+1);
916 unc_name
= *punc_name
;
917 unc_name
[length
+2] = 0;
918 goto continue_unc_parsing
;
920 printf("mount error: improperly formatted UNC name.");
921 printf(" %s does not begin with \\\\ or //\n",unc_name
);
925 continue_unc_parsing
:
930 /* allow for either delimiter between host and sharename */
931 if ((share
= strpbrk(unc_name
, "/\\"))) {
932 *share
= 0; /* temporarily terminate the string */
935 rc
= getaddrinfo(unc_name
, NULL
, NULL
, &addrlist
);
937 printf("mount error: could not resolve address for %s: %s\n",
938 unc_name
, gai_strerror(rc
));
942 *(share
- 1) = '/'; /* put delimiter back */
944 /* we don't convert the prefixpath delimiters since '\\' is a valid char in posix paths */
945 if ((prefixpath
= strpbrk(share
, "/\\"))) {
946 *prefixpath
= 0; /* permanently terminate the string */
947 if (!strlen(++prefixpath
))
948 prefixpath
= NULL
; /* this needs to be done explicitly */
952 printf("ip address specified explicitly\n");
955 /* BB should we pass an alternate version of the share name as Unicode */
959 /* BB add code to find DFS root (send null path on get DFS Referral to specified server here */
960 printf("Mounting the DFS root for a particular server not implemented yet\n");
967 static struct option longopts
[] = {
968 { "all", 0, NULL
, 'a' },
969 { "help",0, NULL
, 'h' },
970 { "move",0, NULL
, 'm' },
971 { "bind",0, NULL
, 'b' },
972 { "read-only", 0, NULL
, 'r' },
973 { "ro", 0, NULL
, 'r' },
974 { "verbose", 0, NULL
, 'v' },
975 { "version", 0, NULL
, 'V' },
976 { "read-write", 0, NULL
, 'w' },
977 { "rw", 0, NULL
, 'w' },
978 { "options", 1, NULL
, 'o' },
979 { "type", 1, NULL
, 't' },
980 { "rsize",1, NULL
, 'R' },
981 { "wsize",1, NULL
, 'W' },
982 { "uid", 1, NULL
, '1'},
983 { "gid", 1, NULL
, '2'},
984 { "user",1,NULL
,'u'},
985 { "username",1,NULL
,'u'},
987 { "domain",1,NULL
,'d'},
988 { "password",1,NULL
,'p'},
989 { "pass",1,NULL
,'p'},
990 { "credentials",1,NULL
,'c'},
991 { "port",1,NULL
,'P'},
992 /* { "uuid",1,NULL,'U'}, */ /* BB unimplemented */
996 /* convert a string to uppercase. return false if the string
997 * wasn't ASCII. Return success on a NULL ptr */
999 uppercase_string(char *string
)
1005 /* check for unicode */
1006 if ((unsigned char) string
[0] & 0x80)
1008 *string
= toupper((unsigned char) *string
);
1015 int main(int argc
, char ** argv
)
1018 int flags
= MS_MANDLOCK
; /* no need to set legacy MS_MGC_VAL */
1019 char * orgoptions
= NULL
;
1020 char * share_name
= NULL
;
1021 const char * ipaddr
= NULL
;
1023 char * mountpoint
= NULL
;
1024 char * options
= NULL
;
1026 char * resolved_path
= NULL
;
1037 size_t options_size
= 0;
1039 int retry
= 0; /* set when we have to retry mount with uppercase */
1040 struct addrinfo
*addrhead
= NULL
, *addr
;
1041 struct stat statbuf
;
1042 struct utsname sysinfo
;
1043 struct mntent mountent
;
1044 struct sockaddr_in
*addr4
;
1045 struct sockaddr_in6
*addr6
;
1048 /* setlocale(LC_ALL, "");
1049 bindtextdomain(PACKAGE, LOCALEDIR);
1050 textdomain(PACKAGE); */
1053 thisprogram
= argv
[0];
1059 if(thisprogram
== NULL
)
1060 thisprogram
= "mount.cifs";
1063 /* BB add workstation name and domain and pass down */
1065 /* #ifdef _GNU_SOURCE
1066 printf(" node: %s machine: %s sysname %s domain %s\n", sysinfo.nodename,sysinfo.machine,sysinfo.sysname,sysinfo.domainname);
1070 share_name
= strndup(argv
[1], MAX_UNC_LEN
);
1071 if (share_name
== NULL
) {
1072 fprintf(stderr
, "%s: %s", argv
[0], strerror(ENOMEM
));
1075 mountpoint
= argv
[2];
1081 /* add sharename in opts string as unc= parm */
1083 while ((c
= getopt_long (argc
, argv
, "afFhilL:no:O:rsSU:vVwt:",
1084 longopts
, NULL
)) != -1) {
1086 /* No code to do the following options yet */
1088 list_with_volumelabel = 1;
1091 volumelabel = optarg;
1098 case 'h': /* help */
1099 mount_cifs_usage ();
1109 "option 'b' (MS_BIND) not supported\n");
1117 "option 'm' (MS_MOVE) not supported\n");
1121 orgoptions
= strdup(optarg
);
1123 case 'r': /* mount readonly */
1133 printf ("mount.cifs version: %s.%s%s\n",
1134 MOUNT_CIFS_VERSION_MAJOR
,
1135 MOUNT_CIFS_VERSION_MINOR
,
1136 MOUNT_CIFS_VENDOR_SUFFIX
);
1139 flags
&= ~MS_RDONLY
;
1142 rsize
= atoi(optarg
) ;
1145 wsize
= atoi(optarg
);
1148 if (isdigit(*optarg
)) {
1151 uid
= strtoul(optarg
, &ep
, 10);
1153 printf("bad uid value \"%s\"\n", optarg
);
1159 if (!(pw
= getpwnam(optarg
))) {
1160 printf("bad user name \"%s\"\n", optarg
);
1168 if (isdigit(*optarg
)) {
1171 gid
= strtoul(optarg
, &ep
, 10);
1173 printf("bad gid value \"%s\"\n", optarg
);
1179 if (!(gr
= getgrnam(optarg
))) {
1180 printf("bad user name \"%s\"\n", optarg
);
1192 domain_name
= optarg
; /* BB fix this - currently ignored */
1196 if(mountpassword
== NULL
)
1197 mountpassword
= (char *)calloc(MOUNT_PASSWD_SIZE
+1,1);
1200 strlcpy(mountpassword
,optarg
,MOUNT_PASSWD_SIZE
+1);
1204 get_password_from_file(0 /* stdin */,NULL
);
1209 printf("unknown mount option %c\n",c
);
1215 if((argc
< 3) || (dev_name
== NULL
) || (mountpoint
== NULL
)) {
1220 if (getenv("PASSWD")) {
1221 if(mountpassword
== NULL
)
1222 mountpassword
= (char *)calloc(MOUNT_PASSWD_SIZE
+1,1);
1224 strlcpy(mountpassword
,getenv("PASSWD"),MOUNT_PASSWD_SIZE
+1);
1227 } else if (getenv("PASSWD_FD")) {
1228 get_password_from_file(atoi(getenv("PASSWD_FD")),NULL
);
1229 } else if (getenv("PASSWD_FILE")) {
1230 get_password_from_file(0, getenv("PASSWD_FILE"));
1233 if (orgoptions
&& parse_options(&orgoptions
, &flags
)) {
1237 addrhead
= addr
= parse_server(&share_name
);
1238 if((addrhead
== NULL
) && (got_ip
== 0)) {
1239 printf("No ip address specified and hostname not found\n");
1244 /* BB save off path and pop after mount returns? */
1245 resolved_path
= (char *)malloc(PATH_MAX
+1);
1247 /* Note that if we can not canonicalize the name, we get
1248 another chance to see if it is valid when we chdir to it */
1249 if (realpath(mountpoint
, resolved_path
)) {
1250 mountpoint
= resolved_path
;
1253 if(chdir(mountpoint
)) {
1254 printf("mount error: can not change directory into mount target %s\n",mountpoint
);
1259 if(stat (".", &statbuf
)) {
1260 printf("mount error: mount point %s does not exist\n",mountpoint
);
1265 if (S_ISDIR(statbuf
.st_mode
) == 0) {
1266 printf("mount error: mount point %s is not a directory\n",mountpoint
);
1271 if((getuid() != 0) && (geteuid() == 0)) {
1272 if((statbuf
.st_uid
== getuid()) && (S_IRWXU
== (statbuf
.st_mode
& S_IRWXU
))) {
1273 #ifndef CIFS_ALLOW_USR_SUID
1274 /* Do not allow user mounts to control suid flag
1275 for mount unless explicitly built that way */
1276 flags
|= MS_NOSUID
| MS_NODEV
;
1279 printf("mount error: permission denied or not superuser and mount.cifs not installed SUID\n");
1285 user_name
= getusername();
1289 if(got_password
== 0) {
1290 char *tmp_pass
= getpass("Password: "); /* BB obsolete sys call but
1291 no good replacement yet. */
1292 mountpassword
= (char *)calloc(MOUNT_PASSWD_SIZE
+1,1);
1293 if (!tmp_pass
|| !mountpassword
) {
1294 printf("Password not entered, exiting\n");
1297 strlcpy(mountpassword
, tmp_pass
, MOUNT_PASSWD_SIZE
+1);
1300 /* FIXME launch daemon (handles dfs name resolution and credential change)
1301 remember to clear parms and overwrite password field before launching */
1303 optlen
= strlen(orgoptions
);
1308 optlen
+= strlen(share_name
) + 4;
1310 printf("No server share name specified\n");
1311 printf("\nMounting the DFS root for server not implemented yet\n");
1315 optlen
+= strlen(user_name
) + 6;
1316 optlen
+= MAX_ADDRESS_LEN
+ 4;
1318 optlen
+= strlen(mountpassword
) + 6;
1321 options_size
= optlen
+ 10 + DOMAIN_SIZE
;
1322 options
= (char *)malloc(options_size
/* space for commas in password */ + 8 /* space for domain= , domain name itself was counted as part of the length username string above */);
1324 if(options
== NULL
) {
1325 printf("Could not allocate memory for mount options\n");
1329 strlcpy(options
, "unc=", options_size
);
1330 strlcat(options
,share_name
,options_size
);
1331 /* scan backwards and reverse direction of slash */
1332 temp
= strrchr(options
, '/');
1333 if(temp
> options
+ 6)
1336 /* check for syntax like user=domain\user */
1338 domain_name
= check_for_domain(&user_name
);
1339 strlcat(options
,",user=",options_size
);
1340 strlcat(options
,user_name
,options_size
);
1344 /* extra length accounted for in option string above */
1345 strlcat(options
,",domain=",options_size
);
1346 strlcat(options
,domain_name
,options_size
);
1350 /* Commas have to be doubled, or else they will
1351 look like the parameter separator */
1352 /* if(sep is not set)*/
1354 check_for_comma(&mountpassword
);
1355 strlcat(options
,",pass=",options_size
);
1356 strlcat(options
,mountpassword
,options_size
);
1359 strlcat(options
,",ver=",options_size
);
1360 strlcat(options
,MOUNT_CIFS_VERSION_MAJOR
,options_size
);
1363 strlcat(options
,",",options_size
);
1364 strlcat(options
,orgoptions
,options_size
);
1367 strlcat(options
,",prefixpath=",options_size
);
1368 strlcat(options
,prefixpath
,options_size
); /* no need to cat the / */
1371 printf("\nmount.cifs kernel mount options %s \n",options
);
1373 /* convert all '\\' to '/' in share portion so that /proc/mounts looks pretty */
1374 replace_char(dev_name
, '\\', '/', strlen(share_name
));
1376 if (!got_ip
&& addr
) {
1377 strlcat(options
, ",ip=", options_size
);
1378 current_len
= strnlen(options
, options_size
);
1379 optionstail
= options
+ current_len
;
1380 switch (addr
->ai_addr
->sa_family
) {
1382 addr6
= (struct sockaddr_in6
*) addr
->ai_addr
;
1383 ipaddr
= inet_ntop(AF_INET6
, &addr6
->sin6_addr
, optionstail
,
1384 options_size
- current_len
);
1387 addr4
= (struct sockaddr_in
*) addr
->ai_addr
;
1388 ipaddr
= inet_ntop(AF_INET
, &addr4
->sin_addr
, optionstail
,
1389 options_size
- current_len
);
1393 /* if the address looks bogus, try the next one */
1395 addr
= addr
->ai_next
;
1403 if (mount(dev_name
, mountpoint
, "cifs", flags
, options
)) {
1408 addr
= addr
->ai_next
;
1414 printf("mount error: cifs filesystem not supported by the system\n");
1419 if (uppercase_string(dev_name
) &&
1420 uppercase_string(share_name
) &&
1421 uppercase_string(prefixpath
)) {
1422 printf("retrying with upper case share name\n");
1427 printf("mount error(%d): %s\n", errno
, strerror(errno
));
1428 printf("Refer to the mount.cifs(8) manual page (e.g.man mount.cifs)\n");
1433 atexit(unlock_mtab
);
1436 printf("cannot lock mtab");
1439 pmntfile
= setmntent(MOUNTED
, "a+");
1441 printf("could not update mount table\n");
1446 mountent
.mnt_fsname
= dev_name
;
1447 mountent
.mnt_dir
= mountpoint
;
1448 mountent
.mnt_type
= CONST_DISCARD(char *,"cifs");
1449 mountent
.mnt_opts
= (char *)malloc(220);
1450 if(mountent
.mnt_opts
) {
1451 char * mount_user
= getusername();
1452 memset(mountent
.mnt_opts
,0,200);
1453 if(flags
& MS_RDONLY
)
1454 strlcat(mountent
.mnt_opts
,"ro",220);
1456 strlcat(mountent
.mnt_opts
,"rw",220);
1457 if(flags
& MS_MANDLOCK
)
1458 strlcat(mountent
.mnt_opts
,",mand",220);
1459 if(flags
& MS_NOEXEC
)
1460 strlcat(mountent
.mnt_opts
,",noexec",220);
1461 if(flags
& MS_NOSUID
)
1462 strlcat(mountent
.mnt_opts
,",nosuid",220);
1463 if(flags
& MS_NODEV
)
1464 strlcat(mountent
.mnt_opts
,",nodev",220);
1465 if(flags
& MS_SYNCHRONOUS
)
1466 strlcat(mountent
.mnt_opts
,",sync",220);
1469 strlcat(mountent
.mnt_opts
,
1471 strlcat(mountent
.mnt_opts
,
1476 mountent
.mnt_freq
= 0;
1477 mountent
.mnt_passno
= 0;
1478 rc
= addmntent(pmntfile
,&mountent
);
1479 endmntent(pmntfile
);
1481 SAFE_FREE(mountent
.mnt_opts
);
1486 int len
= strlen(mountpassword
);
1487 memset(mountpassword
,0,len
);
1488 SAFE_FREE(mountpassword
);
1492 freeaddrinfo(addrhead
);
1494 SAFE_FREE(orgoptions
);
1495 SAFE_FREE(resolved_path
);
1496 SAFE_FREE(share_name
);