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 128
81 #define DOMAIN_SIZE 64
83 /* currently maximum length of IPv6 address string */
84 #define MAX_ADDRESS_LEN INET6_ADDRSTRLEN
86 const char *thisprogram
;
89 static int got_password
= 0;
90 static int got_user
= 0;
91 static int got_domain
= 0;
92 static int got_ip
= 0;
93 static int got_unc
= 0;
94 static int got_uid
= 0;
95 static int got_gid
= 0;
96 static char * user_name
= NULL
;
97 static char * mountpassword
= NULL
;
98 char * domain_name
= NULL
;
99 char * prefixpath
= NULL
;
101 /* glibc doesn't have strlcpy, strlcat. Ensure we do. JRA. We
102 * don't link to libreplace so need them here. */
104 /* like strncpy but does not 0 fill the buffer and always null
105 * terminates. bufsize is the size of the destination buffer */
108 static size_t strlcpy(char *d
, const char *s
, size_t bufsize
)
110 size_t len
= strlen(s
);
112 if (bufsize
<= 0) return 0;
113 if (len
>= bufsize
) len
= bufsize
-1;
120 /* like strncat but does not 0 fill the buffer and always null
121 * terminates. bufsize is the length of the buffer, which should
122 * be one more than the maximum resulting string length */
125 static size_t strlcat(char *d
, const char *s
, size_t bufsize
)
127 size_t len1
= strlen(d
);
128 size_t len2
= strlen(s
);
129 size_t ret
= len1
+ len2
;
131 if (len1
+len2
>= bufsize
) {
132 if (bufsize
< (len1
+1)) {
135 len2
= bufsize
- (len1
+1);
138 memcpy(d
+len1
, s
, len2
);
148 open nofollow - avoid symlink exposure?
149 get owner of dir see if matches self or if root
150 call system(umount argv) etc.
154 static char * check_for_domain(char **);
157 static void mount_cifs_usage(void)
159 printf("\nUsage: %s <remotetarget> <dir> -o <options>\n", thisprogram
);
160 printf("\nMount the remote target, specified as a UNC name,");
161 printf(" to a local directory.\n\nOptions:\n");
162 printf("\tuser=<arg>\n\tpass=<arg>\n\tdom=<arg>\n");
163 printf("\nLess commonly used options:");
164 printf("\n\tcredentials=<filename>,guest,perm,noperm,setuids,nosetuids,rw,ro,");
165 printf("\n\tsep=<char>,iocharset=<codepage>,suid,nosuid,exec,noexec,serverino,");
166 printf("\n\tmapchars,nomapchars,nolock,servernetbiosname=<SRV_RFC1001NAME>");
167 printf("\n\tdirectio,nounix,cifsacl,sec=<authentication mechanism>,sign");
168 printf("\n\nOptions not needed for servers supporting CIFS Unix extensions");
169 printf("\n\t(e.g. unneeded for mounts to most Samba versions):");
170 printf("\n\tuid=<uid>,gid=<gid>,dir_mode=<mode>,file_mode=<mode>,sfu");
171 printf("\n\nRarely used options:");
172 printf("\n\tport=<tcpport>,rsize=<size>,wsize=<size>,unc=<unc_name>,ip=<ip_address>,");
173 printf("\n\tdev,nodev,nouser_xattr,netbiosname=<OUR_RFC1001NAME>,hard,soft,intr,");
174 printf("\n\tnointr,ignorecase,noposixpaths,noacl,prefixpath=<path>,nobrl");
175 printf("\n\tin6_addr");
176 printf("\n\nOptions are described in more detail in the manual page");
177 printf("\n\tman 8 mount.cifs\n");
178 printf("\nTo display the version number of the mount helper:");
179 printf("\n\t%s -V\n",thisprogram
);
181 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
, MOUNT_PASSWD_SIZE
) < MOUNT_PASSWD_SIZE
) {
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 (!strncmp(value
, "none", 4) ||
488 !strncmp(value
, "krb5", 4))
491 } else if (strncmp(data
, "ip", 2) == 0) {
492 if (!value
|| !*value
) {
493 printf("target ip address argument missing");
494 } else if (strnlen(value
, MAX_ADDRESS_LEN
) <= MAX_ADDRESS_LEN
) {
496 printf("ip address %s override specified\n",value
);
499 printf("ip address too long\n");
503 } else if ((strncmp(data
, "unc", 3) == 0)
504 || (strncmp(data
, "target", 6) == 0)
505 || (strncmp(data
, "path", 4) == 0)) {
506 if (!value
|| !*value
) {
507 printf("invalid path to network resource\n");
509 return 1; /* needs_arg; */
510 } else if(strnlen(value
,5) < 5) {
511 printf("UNC name too short");
514 if (strnlen(value
, 300) < 300) {
516 if (strncmp(value
, "//", 2) == 0) {
518 printf("unc name specified twice, ignoring second\n");
521 } else if (strncmp(value
, "\\\\", 2) != 0) {
522 printf("UNC Path does not begin with // or \\\\ \n");
527 printf("unc name specified twice, ignoring second\n");
532 printf("CIFS: UNC name too long\n");
536 } else if ((strncmp(data
, "dom" /* domain */, 3) == 0)
537 || (strncmp(data
, "workg", 5) == 0)) {
538 /* note this allows for synonyms of "domain"
539 such as "DOM" and "dom" and "workgroup"
540 and "WORKGRP" etc. */
541 if (!value
|| !*value
) {
542 printf("CIFS: invalid domain name\n");
544 return 1; /* needs_arg; */
546 if (strnlen(value
, DOMAIN_SIZE
+1) < DOMAIN_SIZE
+1) {
549 printf("domain name too long\n");
553 } else if (strncmp(data
, "cred", 4) == 0) {
554 if (value
&& *value
) {
555 rc
= open_cred_file(value
);
557 printf("error %d (%s) opening credential file %s\n",
558 rc
, strerror(rc
), value
);
563 printf("invalid credential file name specified\n");
567 } else if (strncmp(data
, "uid", 3) == 0) {
568 if (value
&& *value
) {
570 if (!isdigit(*value
)) {
573 if (!(pw
= getpwnam(value
))) {
574 printf("bad user name \"%s\"\n", value
);
577 snprintf(user
, sizeof(user
), "%u", pw
->pw_uid
);
579 strlcpy(user
,value
,sizeof(user
));
583 } else if (strncmp(data
, "gid", 3) == 0) {
584 if (value
&& *value
) {
586 if (!isdigit(*value
)) {
589 if (!(gr
= getgrnam(value
))) {
590 printf("bad group name \"%s\"\n", value
);
593 snprintf(group
, sizeof(group
), "%u", gr
->gr_gid
);
595 strlcpy(group
,value
,sizeof(group
));
599 /* fmask and dmask synonyms for people used to smbfs syntax */
600 } else if (strcmp(data
, "file_mode") == 0 || strcmp(data
, "fmask")==0) {
601 if (!value
|| !*value
) {
602 printf ("Option '%s' requires a numerical argument\n", data
);
607 if (value
[0] != '0') {
608 printf ("WARNING: '%s' not expressed in octal.\n", data
);
611 if (strcmp (data
, "fmask") == 0) {
612 printf ("WARNING: CIFS mount option 'fmask' is deprecated. Use 'file_mode' instead.\n");
613 data
= "file_mode"; /* BB fix this */
615 } else if (strcmp(data
, "dir_mode") == 0 || strcmp(data
, "dmask")==0) {
616 if (!value
|| !*value
) {
617 printf ("Option '%s' requires a numerical argument\n", data
);
622 if (value
[0] != '0') {
623 printf ("WARNING: '%s' not expressed in octal.\n", data
);
626 if (strcmp (data
, "dmask") == 0) {
627 printf ("WARNING: CIFS mount option 'dmask' is deprecated. Use 'dir_mode' instead.\n");
630 /* the following eight mount options should be
631 stripped out from what is passed into the kernel
632 since these eight options are best passed as the
633 mount flags rather than redundantly to the kernel
634 and could generate spurious warnings depending on the
635 level of the corresponding cifs vfs kernel code */
636 } else if (strncmp(data
, "nosuid", 6) == 0) {
637 *filesys_flags
|= MS_NOSUID
;
638 } else if (strncmp(data
, "suid", 4) == 0) {
639 *filesys_flags
&= ~MS_NOSUID
;
640 } else if (strncmp(data
, "nodev", 5) == 0) {
641 *filesys_flags
|= MS_NODEV
;
642 } else if ((strncmp(data
, "nobrl", 5) == 0) ||
643 (strncmp(data
, "nolock", 6) == 0)) {
644 *filesys_flags
&= ~MS_MANDLOCK
;
645 } else if (strncmp(data
, "dev", 3) == 0) {
646 *filesys_flags
&= ~MS_NODEV
;
647 } else if (strncmp(data
, "noexec", 6) == 0) {
648 *filesys_flags
|= MS_NOEXEC
;
649 } else if (strncmp(data
, "exec", 4) == 0) {
650 *filesys_flags
&= ~MS_NOEXEC
;
651 } else if (strncmp(data
, "guest", 5) == 0) {
652 user_name
= (char *)calloc(1, 1);
655 } else if (strncmp(data
, "ro", 2) == 0) {
656 *filesys_flags
|= MS_RDONLY
;
657 } else if (strncmp(data
, "rw", 2) == 0) {
658 *filesys_flags
&= ~MS_RDONLY
;
659 } else if (strncmp(data
, "remount", 7) == 0) {
660 *filesys_flags
|= MS_REMOUNT
;
661 } /* else if (strnicmp(data, "port", 4) == 0) {
662 if (value && *value) {
664 simple_strtoul(value, &value, 0);
666 } else if (strnicmp(data, "rsize", 5) == 0) {
667 if (value && *value) {
669 simple_strtoul(value, &value, 0);
671 } else if (strnicmp(data, "wsize", 5) == 0) {
672 if (value && *value) {
674 simple_strtoul(value, &value, 0);
676 } else if (strnicmp(data, "version", 3) == 0) {
678 printf("CIFS: Unknown mount option %s\n",data);
679 } */ /* nothing to do on those four mount options above.
680 Just pass to kernel and ignore them here */
682 /* Copy (possibly modified) option to out */
683 word_len
= strlen(data
);
685 word_len
+= 1 + strlen(value
);
687 out
= (char *)realloc(out
, out_len
+ word_len
+ 2);
694 strlcat(out
, ",", out_len
+ word_len
+ 2);
699 snprintf(out
+ out_len
, word_len
+ 1, "%s=%s", data
, value
);
701 snprintf(out
+ out_len
, word_len
+ 1, "%s", data
);
702 out_len
= strlen(out
);
708 /* special-case the uid and gid */
710 word_len
= strlen(user
);
712 out
= (char *)realloc(out
, out_len
+ word_len
+ 6);
719 strlcat(out
, ",", out_len
+ word_len
+ 6);
722 snprintf(out
+ out_len
, word_len
+ 5, "uid=%s", user
);
723 out_len
= strlen(out
);
726 word_len
= strlen(group
);
728 out
= (char *)realloc(out
, out_len
+ 1 + word_len
+ 6);
735 strlcat(out
, ",", out_len
+ word_len
+ 6);
738 snprintf(out
+ out_len
, word_len
+ 5, "gid=%s", group
);
739 out_len
= strlen(out
);
742 SAFE_FREE(*optionsp
);
747 /* replace all (one or more) commas with double commas */
748 static void check_for_comma(char ** ppasswrd
)
753 int number_of_commas
= 0;
768 if(number_of_commas
== 0)
770 if(number_of_commas
> MOUNT_PASSWD_SIZE
) {
771 /* would otherwise overflow the mount options buffer */
772 printf("\nInvalid password. Password contains too many commas.\n");
776 new_pass_buf
= (char *)malloc(len
+number_of_commas
+1);
777 if(new_pass_buf
== NULL
)
780 for(i
=0,j
=0;i
<len
;i
++,j
++) {
781 new_pass_buf
[j
] = pass
[i
];
784 new_pass_buf
[j
] = pass
[i
];
787 new_pass_buf
[len
+number_of_commas
] = 0;
789 SAFE_FREE(*ppasswrd
);
790 *ppasswrd
= new_pass_buf
;
795 /* Usernames can not have backslash in them and we use
796 [BB check if usernames can have forward slash in them BB]
797 backslash as domain\user separator character
799 static char * check_for_domain(char **ppuser
)
801 char * original_string
;
811 original_string
= *ppuser
;
813 if (original_string
== NULL
)
816 original_len
= strlen(original_string
);
818 usernm
= strchr(*ppuser
,'/');
819 if (usernm
== NULL
) {
820 usernm
= strchr(*ppuser
,'\\');
826 printf("Domain name specified twice. Username probably malformed\n");
832 if (domainnm
[0] != 0) {
835 printf("null domain\n");
837 len
= strlen(domainnm
);
838 /* reset domainm to new buffer, and copy
839 domain name into it */
840 domainnm
= (char *)malloc(len
+1);
844 strlcpy(domainnm
,*ppuser
,len
+1);
846 /* move_string(*ppuser, usernm+1) */
847 len
= strlen(usernm
+1);
849 if(len
>= original_len
) {
850 /* should not happen */
854 for(i
=0;i
<original_len
;i
++) {
856 original_string
[i
] = usernm
[i
+1];
857 else /* stuff with commas to remove last parm */
858 original_string
[i
] = ',';
861 /* BB add check for more than one slash?
869 /* replace all occurances of "from" in a string with "to" */
870 static void replace_char(char *string
, char from
, char to
, int maxlen
)
872 char *lastchar
= string
+ maxlen
;
874 string
= strchr(string
, from
);
877 if (string
>= lastchar
)
883 /* Note that caller frees the returned buffer if necessary */
884 static struct addrinfo
*
885 parse_server(char ** punc_name
)
887 char * unc_name
= *punc_name
;
888 int length
= strnlen(unc_name
, MAX_UNC_LEN
);
890 struct addrinfo
*addrlist
;
893 if(length
> (MAX_UNC_LEN
- 1)) {
894 printf("mount error: UNC name too long");
897 if ((strncasecmp("cifs://", unc_name
, 7) == 0) ||
898 (strncasecmp("smb://", unc_name
, 6) == 0)) {
899 printf("\nMounting cifs URL not implemented yet. Attempt to mount %s\n", unc_name
);
904 /* BB add code to find DFS root here */
905 printf("\nMounting the DFS root for domain not implemented yet\n");
908 if(strncmp(unc_name
,"//",2) && strncmp(unc_name
,"\\\\",2)) {
909 /* check for nfs syntax ie server:share */
910 share
= strchr(unc_name
,':');
912 *punc_name
= (char *)malloc(length
+3);
913 if(*punc_name
== NULL
) {
914 /* put the original string back if
916 *punc_name
= unc_name
;
920 strlcpy((*punc_name
)+2,unc_name
,length
+1);
922 unc_name
= *punc_name
;
923 unc_name
[length
+2] = 0;
924 goto continue_unc_parsing
;
926 printf("mount error: improperly formatted UNC name.");
927 printf(" %s does not begin with \\\\ or //\n",unc_name
);
931 continue_unc_parsing
:
936 /* allow for either delimiter between host and sharename */
937 if ((share
= strpbrk(unc_name
, "/\\"))) {
938 *share
= 0; /* temporarily terminate the string */
941 rc
= getaddrinfo(unc_name
, NULL
, NULL
, &addrlist
);
943 printf("mount error: could not resolve address for %s: %s\n",
944 unc_name
, gai_strerror(rc
));
948 *(share
- 1) = '/'; /* put delimiter back */
950 /* we don't convert the prefixpath delimiters since '\\' is a valid char in posix paths */
951 if ((prefixpath
= strpbrk(share
, "/\\"))) {
952 *prefixpath
= 0; /* permanently terminate the string */
953 if (!strlen(++prefixpath
))
954 prefixpath
= NULL
; /* this needs to be done explicitly */
958 printf("ip address specified explicitly\n");
961 /* BB should we pass an alternate version of the share name as Unicode */
965 /* BB add code to find DFS root (send null path on get DFS Referral to specified server here */
966 printf("Mounting the DFS root for a particular server not implemented yet\n");
973 static struct option longopts
[] = {
974 { "all", 0, NULL
, 'a' },
975 { "help",0, NULL
, 'h' },
976 { "move",0, NULL
, 'm' },
977 { "bind",0, NULL
, 'b' },
978 { "read-only", 0, NULL
, 'r' },
979 { "ro", 0, NULL
, 'r' },
980 { "verbose", 0, NULL
, 'v' },
981 { "version", 0, NULL
, 'V' },
982 { "read-write", 0, NULL
, 'w' },
983 { "rw", 0, NULL
, 'w' },
984 { "options", 1, NULL
, 'o' },
985 { "type", 1, NULL
, 't' },
986 { "rsize",1, NULL
, 'R' },
987 { "wsize",1, NULL
, 'W' },
988 { "uid", 1, NULL
, '1'},
989 { "gid", 1, NULL
, '2'},
990 { "user",1,NULL
,'u'},
991 { "username",1,NULL
,'u'},
993 { "domain",1,NULL
,'d'},
994 { "password",1,NULL
,'p'},
995 { "pass",1,NULL
,'p'},
996 { "credentials",1,NULL
,'c'},
997 { "port",1,NULL
,'P'},
998 /* { "uuid",1,NULL,'U'}, */ /* BB unimplemented */
1002 /* convert a string to uppercase. return false if the string
1003 * wasn't ASCII. Return success on a NULL ptr */
1005 uppercase_string(char *string
)
1011 /* check for unicode */
1012 if ((unsigned char) string
[0] & 0x80)
1014 *string
= toupper((unsigned char) *string
);
1021 static void print_cifs_mount_version(void)
1023 printf("mount.cifs version: %s.%s%s\n",
1024 MOUNT_CIFS_VERSION_MAJOR
,
1025 MOUNT_CIFS_VERSION_MINOR
,
1026 MOUNT_CIFS_VENDOR_SUFFIX
);
1029 int main(int argc
, char ** argv
)
1032 int flags
= MS_MANDLOCK
; /* no need to set legacy MS_MGC_VAL */
1033 char * orgoptions
= NULL
;
1034 char * share_name
= NULL
;
1035 const char * ipaddr
= NULL
;
1037 char * mountpoint
= NULL
;
1038 char * options
= NULL
;
1040 char * resolved_path
= NULL
;
1051 size_t options_size
= 0;
1053 int retry
= 0; /* set when we have to retry mount with uppercase */
1054 struct addrinfo
*addrhead
= NULL
, *addr
;
1055 struct stat statbuf
;
1056 struct utsname sysinfo
;
1057 struct mntent mountent
;
1058 struct sockaddr_in
*addr4
;
1059 struct sockaddr_in6
*addr6
;
1062 /* setlocale(LC_ALL, "");
1063 bindtextdomain(PACKAGE, LOCALEDIR);
1064 textdomain(PACKAGE); */
1067 thisprogram
= argv
[0];
1073 if(thisprogram
== NULL
)
1074 thisprogram
= "mount.cifs";
1077 /* BB add workstation name and domain and pass down */
1079 /* #ifdef _GNU_SOURCE
1080 printf(" node: %s machine: %s sysname %s domain %s\n", sysinfo.nodename,sysinfo.machine,sysinfo.sysname,sysinfo.domainname);
1084 share_name
= strndup(argv
[1], MAX_UNC_LEN
);
1085 if (share_name
== NULL
) {
1086 fprintf(stderr
, "%s: %s", argv
[0], strerror(ENOMEM
));
1089 mountpoint
= argv
[2];
1090 } else if (argc
== 2) {
1091 if ((strcmp(argv
[1], "-V") == 0) ||
1092 (strcmp(argv
[1], "--version") == 0))
1094 print_cifs_mount_version();
1098 if ((strcmp(argv
[1], "-h") == 0) ||
1099 (strcmp(argv
[1], "-?") == 0) ||
1100 (strcmp(argv
[1], "--help") == 0))
1113 /* add sharename in opts string as unc= parm */
1115 while ((c
= getopt_long (argc
, argv
, "afFhilL:no:O:rsSU:vVwt:",
1116 longopts
, NULL
)) != -1) {
1118 /* No code to do the following options yet */
1120 list_with_volumelabel = 1;
1123 volumelabel = optarg;
1130 case 'h': /* help */
1131 mount_cifs_usage ();
1141 "option 'b' (MS_BIND) not supported\n");
1149 "option 'm' (MS_MOVE) not supported\n");
1153 orgoptions
= strdup(optarg
);
1155 case 'r': /* mount readonly */
1165 print_cifs_mount_version();
1168 flags
&= ~MS_RDONLY
;
1171 rsize
= atoi(optarg
) ;
1174 wsize
= atoi(optarg
);
1177 if (isdigit(*optarg
)) {
1180 uid
= strtoul(optarg
, &ep
, 10);
1182 printf("bad uid value \"%s\"\n", optarg
);
1188 if (!(pw
= getpwnam(optarg
))) {
1189 printf("bad user name \"%s\"\n", optarg
);
1197 if (isdigit(*optarg
)) {
1200 gid
= strtoul(optarg
, &ep
, 10);
1202 printf("bad gid value \"%s\"\n", optarg
);
1208 if (!(gr
= getgrnam(optarg
))) {
1209 printf("bad user name \"%s\"\n", optarg
);
1221 domain_name
= optarg
; /* BB fix this - currently ignored */
1225 if(mountpassword
== NULL
)
1226 mountpassword
= (char *)calloc(MOUNT_PASSWD_SIZE
+1,1);
1229 strlcpy(mountpassword
,optarg
,MOUNT_PASSWD_SIZE
+1);
1233 get_password_from_file(0 /* stdin */,NULL
);
1241 printf("unknown mount option %c\n",c
);
1247 if((argc
< 3) || (dev_name
== NULL
) || (mountpoint
== NULL
)) {
1252 if (getenv("PASSWD")) {
1253 if(mountpassword
== NULL
)
1254 mountpassword
= (char *)calloc(MOUNT_PASSWD_SIZE
+1,1);
1256 strlcpy(mountpassword
,getenv("PASSWD"),MOUNT_PASSWD_SIZE
+1);
1259 } else if (getenv("PASSWD_FD")) {
1260 get_password_from_file(atoi(getenv("PASSWD_FD")),NULL
);
1261 } else if (getenv("PASSWD_FILE")) {
1262 get_password_from_file(0, getenv("PASSWD_FILE"));
1265 if (orgoptions
&& parse_options(&orgoptions
, &flags
)) {
1269 addrhead
= addr
= parse_server(&share_name
);
1270 if((addrhead
== NULL
) && (got_ip
== 0)) {
1271 printf("No ip address specified and hostname not found\n");
1276 /* BB save off path and pop after mount returns? */
1277 resolved_path
= (char *)malloc(PATH_MAX
+1);
1279 /* Note that if we can not canonicalize the name, we get
1280 another chance to see if it is valid when we chdir to it */
1281 if (realpath(mountpoint
, resolved_path
)) {
1282 mountpoint
= resolved_path
;
1285 if(chdir(mountpoint
)) {
1286 printf("mount error: can not change directory into mount target %s\n",mountpoint
);
1291 if(stat (".", &statbuf
)) {
1292 printf("mount error: mount point %s does not exist\n",mountpoint
);
1297 if (S_ISDIR(statbuf
.st_mode
) == 0) {
1298 printf("mount error: mount point %s is not a directory\n",mountpoint
);
1303 if((getuid() != 0) && (geteuid() == 0)) {
1304 if((statbuf
.st_uid
== getuid()) && (S_IRWXU
== (statbuf
.st_mode
& S_IRWXU
))) {
1305 #ifndef CIFS_ALLOW_USR_SUID
1306 /* Do not allow user mounts to control suid flag
1307 for mount unless explicitly built that way */
1308 flags
|= MS_NOSUID
| MS_NODEV
;
1311 printf("mount error: permission denied or not superuser and mount.cifs not installed SUID\n");
1317 /* Note that the password will not be retrieved from the
1318 USER env variable (ie user%password form) as there is
1319 already a PASSWD environment varaible */
1321 user_name
= strdup(getenv("USER"));
1322 if (user_name
== NULL
)
1323 user_name
= getusername();
1327 if(got_password
== 0) {
1328 char *tmp_pass
= getpass("Password: "); /* BB obsolete sys call but
1329 no good replacement yet. */
1330 mountpassword
= (char *)calloc(MOUNT_PASSWD_SIZE
+1,1);
1331 if (!tmp_pass
|| !mountpassword
) {
1332 printf("Password not entered, exiting\n");
1335 strlcpy(mountpassword
, tmp_pass
, MOUNT_PASSWD_SIZE
+1);
1338 /* FIXME launch daemon (handles dfs name resolution and credential change)
1339 remember to clear parms and overwrite password field before launching */
1341 optlen
= strlen(orgoptions
);
1346 optlen
+= strlen(share_name
) + 4;
1348 printf("No server share name specified\n");
1349 printf("\nMounting the DFS root for server not implemented yet\n");
1353 optlen
+= strlen(user_name
) + 6;
1354 optlen
+= MAX_ADDRESS_LEN
+ 4;
1356 optlen
+= strlen(mountpassword
) + 6;
1359 options_size
= optlen
+ 10 + DOMAIN_SIZE
;
1360 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 */);
1362 if(options
== NULL
) {
1363 printf("Could not allocate memory for mount options\n");
1367 strlcpy(options
, "unc=", options_size
);
1368 strlcat(options
,share_name
,options_size
);
1369 /* scan backwards and reverse direction of slash */
1370 temp
= strrchr(options
, '/');
1371 if(temp
> options
+ 6)
1374 /* check for syntax like user=domain\user */
1376 domain_name
= check_for_domain(&user_name
);
1377 strlcat(options
,",user=",options_size
);
1378 strlcat(options
,user_name
,options_size
);
1382 /* extra length accounted for in option string above */
1383 strlcat(options
,",domain=",options_size
);
1384 strlcat(options
,domain_name
,options_size
);
1388 /* Commas have to be doubled, or else they will
1389 look like the parameter separator */
1390 /* if(sep is not set)*/
1392 check_for_comma(&mountpassword
);
1393 strlcat(options
,",pass=",options_size
);
1394 strlcat(options
,mountpassword
,options_size
);
1397 strlcat(options
,",ver=",options_size
);
1398 strlcat(options
,MOUNT_CIFS_VERSION_MAJOR
,options_size
);
1401 strlcat(options
,",",options_size
);
1402 strlcat(options
,orgoptions
,options_size
);
1405 strlcat(options
,",prefixpath=",options_size
);
1406 strlcat(options
,prefixpath
,options_size
); /* no need to cat the / */
1409 printf("\nmount.cifs kernel mount options %s \n",options
);
1411 /* convert all '\\' to '/' in share portion so that /proc/mounts looks pretty */
1412 replace_char(dev_name
, '\\', '/', strlen(share_name
));
1414 if (!got_ip
&& addr
) {
1415 strlcat(options
, ",ip=", options_size
);
1416 current_len
= strnlen(options
, options_size
);
1417 optionstail
= options
+ current_len
;
1418 switch (addr
->ai_addr
->sa_family
) {
1420 addr6
= (struct sockaddr_in6
*) addr
->ai_addr
;
1421 ipaddr
= inet_ntop(AF_INET6
, &addr6
->sin6_addr
, optionstail
,
1422 options_size
- current_len
);
1425 addr4
= (struct sockaddr_in
*) addr
->ai_addr
;
1426 ipaddr
= inet_ntop(AF_INET
, &addr4
->sin_addr
, optionstail
,
1427 options_size
- current_len
);
1431 /* if the address looks bogus, try the next one */
1433 addr
= addr
->ai_next
;
1441 if (!fakemnt
&& mount(dev_name
, mountpoint
, "cifs", flags
, options
)) {
1446 addr
= addr
->ai_next
;
1452 printf("mount error: cifs filesystem not supported by the system\n");
1457 if (uppercase_string(dev_name
) &&
1458 uppercase_string(share_name
) &&
1459 uppercase_string(prefixpath
)) {
1460 printf("retrying with upper case share name\n");
1465 printf("mount error(%d): %s\n", errno
, strerror(errno
));
1466 printf("Refer to the mount.cifs(8) manual page (e.g. man "
1474 atexit(unlock_mtab
);
1477 printf("cannot lock mtab");
1480 pmntfile
= setmntent(MOUNTED
, "a+");
1482 printf("could not update mount table\n");
1487 mountent
.mnt_fsname
= dev_name
;
1488 mountent
.mnt_dir
= mountpoint
;
1489 mountent
.mnt_type
= CONST_DISCARD(char *,"cifs");
1490 mountent
.mnt_opts
= (char *)malloc(220);
1491 if(mountent
.mnt_opts
) {
1492 char * mount_user
= getusername();
1493 memset(mountent
.mnt_opts
,0,200);
1494 if(flags
& MS_RDONLY
)
1495 strlcat(mountent
.mnt_opts
,"ro",220);
1497 strlcat(mountent
.mnt_opts
,"rw",220);
1498 if(flags
& MS_MANDLOCK
)
1499 strlcat(mountent
.mnt_opts
,",mand",220);
1500 if(flags
& MS_NOEXEC
)
1501 strlcat(mountent
.mnt_opts
,",noexec",220);
1502 if(flags
& MS_NOSUID
)
1503 strlcat(mountent
.mnt_opts
,",nosuid",220);
1504 if(flags
& MS_NODEV
)
1505 strlcat(mountent
.mnt_opts
,",nodev",220);
1506 if(flags
& MS_SYNCHRONOUS
)
1507 strlcat(mountent
.mnt_opts
,",sync",220);
1510 strlcat(mountent
.mnt_opts
,
1512 strlcat(mountent
.mnt_opts
,
1517 mountent
.mnt_freq
= 0;
1518 mountent
.mnt_passno
= 0;
1519 rc
= addmntent(pmntfile
,&mountent
);
1520 endmntent(pmntfile
);
1522 SAFE_FREE(mountent
.mnt_opts
);
1527 int len
= strlen(mountpassword
);
1528 memset(mountpassword
,0,len
);
1529 SAFE_FREE(mountpassword
);
1533 freeaddrinfo(addrhead
);
1535 SAFE_FREE(orgoptions
);
1536 SAFE_FREE(resolved_path
);
1537 SAFE_FREE(share_name
);