2 Mount helper utility for Linux CIFS VFS (virtual filesystem) client
3 Copyright (C) 2003,2005 Steve French (sfrench@us.ibm.com)
5 This program is free software; you can redistribute it and/or modify
6 it under the terms of the GNU General Public License as published by
7 the Free Software Foundation; either version 2 of the License, or
8 (at your option) any later version.
10 This program is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 GNU General Public License for more details.
15 You should have received a copy of the GNU General Public License
16 along with this program; if not, write to the Free Software
17 Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */
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>
42 #define MOUNT_CIFS_VERSION_MAJOR "1"
43 #define MOUNT_CIFS_VERSION_MINOR "10"
45 #ifndef MOUNT_CIFS_VENDOR_SUFFIX
47 #include "include/version.h"
48 #ifdef SAMBA_VERSION_VENDOR_SUFFIX
49 #define MOUNT_CIFS_VENDOR_SUFFIX "-"SAMBA_VERSION_OFFICIAL_STRING"-"SAMBA_VERSION_VENDOR_SUFFIX
51 #define MOUNT_CIFS_VENDOR_SUFFIX "-"SAMBA_VERSION_OFFICIAL_STRING
52 #endif /* SAMBA_VERSION_OFFICIAL_STRING and SAMBA_VERSION_VENDOR_SUFFIX */
54 #define MOUNT_CIFS_VENDOR_SUFFIX ""
55 #endif /* _SAMBA_BUILD_ */
56 #endif /* MOUNT_CIFS_VENDOR_SUFFIX */
66 #define CONST_DISCARD(type, ptr) ((type) ((void *) (ptr)))
68 const char *thisprogram
;
70 static int got_password
= 0;
71 static int got_user
= 0;
72 static int got_domain
= 0;
73 static int got_ip
= 0;
74 static int got_unc
= 0;
75 static int got_uid
= 0;
76 static int got_gid
= 0;
77 static int free_share_name
= 0;
78 static char * user_name
= NULL
;
79 static char * mountpassword
= NULL
;
80 char * domain_name
= NULL
;
81 char * prefixpath
= NULL
;
87 open nofollow - avoid symlink exposure?
88 get owner of dir see if matches self or if root
89 call system(umount argv) etc.
93 static char * check_for_domain(char **);
96 static void mount_cifs_usage(void)
98 printf("\nUsage: %s <remotetarget> <dir> -o <options>\n", thisprogram
);
99 printf("\nMount the remote target, specified as a UNC name,");
100 printf(" to a local directory.\n\nOptions:\n");
101 printf("\tuser=<arg>\n\tpass=<arg>\n\tdom=<arg>\n");
102 printf("\nLess commonly used options:");
103 printf("\n\tcredentials=<filename>,guest,perm,noperm,setuids,nosetuids,rw,ro,");
104 printf("\n\tsep=<char>,iocharset=<codepage>,suid,nosuid,exec,noexec,serverino,");
105 printf("\n\tdirectio,mapchars,nomapchars,nolock,servernetbiosname=<SRV_RFC1001NAME>");
106 printf("\n\nOptions not needed for servers supporting CIFS Unix extensions");
107 printf("\n\t(e.g. unneeded for mounts to most Samba versions):");
108 printf("\n\tuid=<uid>,gid=<gid>,dir_mode=<mode>,file_mode=<mode>,sfu");
109 printf("\n\nRarely used options:");
110 printf("\n\tport=<tcpport>,rsize=<size>,wsize=<size>,unc=<unc_name>,ip=<ip_address>,");
111 printf("\n\tdev,nodev,nouser_xattr,netbiosname=<OUR_RFC1001NAME>,hard,soft,intr,");
112 printf("\n\tnointr,ignorecase,noposixpaths,noacl");
113 printf("\n\nOptions are described in more detail in the manual page");
114 printf("\n\tman 8 mount.cifs\n");
115 printf("\nTo display the version number of the mount helper:");
116 printf("\n\t%s -V\n",thisprogram
);
119 memset(mountpassword
,0,64);
125 /* caller frees username if necessary */
126 static char * getusername(void) {
127 char *username
= NULL
;
128 struct passwd
*password
= getpwuid(getuid());
131 username
= password
->pw_name
;
136 static char * parse_cifs_url(char * unc_name
)
138 printf("\nMounting cifs URL not implemented yet. Attempt to mount %s\n",unc_name
);
142 static int open_cred_file(char * file_name
)
148 fs
= fopen(file_name
,"r");
151 line_buf
= (char *)malloc(4096);
152 if(line_buf
== NULL
) {
157 while(fgets(line_buf
,4096,fs
)) {
158 /* parse line from credential file */
160 /* eat leading white space */
161 for(i
=0;i
<4086;i
++) {
162 if((line_buf
[i
] != ' ') && (line_buf
[i
] != '\t'))
164 /* if whitespace - skip past it */
166 if (strncasecmp("username",line_buf
+i
,8) == 0) {
167 temp_val
= strchr(line_buf
+ i
,'=');
169 /* go past equals sign */
171 for(length
= 0;length
<4087;length
++) {
172 if(temp_val
[length
] == '\n')
176 printf("mount.cifs failed due to malformed username in credentials file");
177 memset(line_buf
,0,4096);
179 memset(mountpassword
,0,64);
184 user_name
= (char *)calloc(1 + length
,1);
185 /* BB adding free of user_name string before exit,
186 not really necessary but would be cleaner */
187 strncpy(user_name
,temp_val
, length
);
190 } else if (strncasecmp("password",line_buf
+i
,8) == 0) {
191 temp_val
= strchr(line_buf
+i
,'=');
193 /* go past equals sign */
195 for(length
= 0;length
<65;length
++) {
196 if(temp_val
[length
] == '\n')
200 printf("mount.cifs failed: password in credentials file too long\n");
201 memset(line_buf
,0, 4096);
203 memset(mountpassword
,0,64);
207 if(mountpassword
== NULL
) {
208 mountpassword
= (char *)calloc(65,1);
210 memset(mountpassword
,0,64);
212 strncpy(mountpassword
,temp_val
,length
);
217 } else if (strncasecmp("domain",line_buf
+i
,6) == 0) {
218 temp_val
= strchr(line_buf
+i
,'=');
220 /* go past equals sign */
223 printf("\nDomain %s\n",temp_val
);
224 for(length
= 0;length
<65;length
++) {
225 if(temp_val
[length
] == '\n')
229 printf("mount.cifs failed: domain in credentials file too long\n");
231 memset(mountpassword
,0,64);
235 if(domain_name
== NULL
) {
236 domain_name
= (char *)calloc(65,1);
238 memset(domain_name
,0,64);
240 strncpy(domain_name
,temp_val
,length
);
250 memset(line_buf
,0,4096);
256 static int get_password_from_file(int file_descript
, char * filename
)
262 if(mountpassword
== NULL
)
263 mountpassword
= (char *)calloc(65,1);
265 memset(mountpassword
, 0, 64);
267 if (mountpassword
== NULL
) {
268 printf("malloc failed\n");
272 if(filename
!= NULL
) {
273 file_descript
= open(filename
, O_RDONLY
);
274 if(file_descript
< 0) {
275 printf("mount.cifs failed. %s attempting to open password file %s\n",
276 strerror(errno
),filename
);
280 /* else file already open and fd provided */
283 rc
= read(file_descript
,&c
,1);
285 printf("mount.cifs failed. Error %s reading password file\n",strerror(errno
));
286 memset(mountpassword
,0,64);
288 close(file_descript
);
291 if(mountpassword
[0] == 0) {
293 printf("\nWarning: null password used since cifs password file empty");
296 } else /* read valid character */ {
297 if((c
== 0) || (c
== '\n')) {
300 mountpassword
[i
] = c
;
303 if((i
== 64) && (verboseflag
)) {
304 printf("\nWarning: password longer than 64 characters specified in cifs password file");
307 if(filename
!= NULL
) {
308 close(file_descript
);
314 static int parse_options(char ** optionsp
, int * filesys_flags
)
317 char * percent_char
= NULL
;
319 char * next_keyword
= NULL
;
325 if (!optionsp
|| !*optionsp
)
330 printf("parsing options: %s\n", data
);
332 /* BB fixme check for separator override BB */
334 /* while ((data = strsep(&options, ",")) != NULL) { */
335 while(data
!= NULL
) {
336 /* check if ends with trailing comma */
340 /* format is keyword=value,keyword2=value2,keyword3=value3 etc.) */
341 /* data = next keyword */
342 /* value = next value ie stuff after equal sign */
344 next_keyword
= strchr(data
,','); /* BB handle sep= */
346 /* temporarily null terminate end of keyword=value pair */
350 /* temporarily null terminate keyword to make keyword and value distinct */
351 if ((value
= strchr(data
, '=')) != NULL
) {
356 if (strncmp(data
, "users",5) == 0) {
357 if(!value
|| !*value
) {
360 } else if (strncmp(data
, "user_xattr",10) == 0) {
361 /* do nothing - need to skip so not parsed as user name */
362 } else if (strncmp(data
, "user", 4) == 0) {
364 if (!value
|| !*value
) {
365 if(data
[4] == '\0') {
367 printf("\nskipping empty user mount parameter\n");
368 /* remove the parm since it would otherwise be confusing
369 to the kernel code which would think it was a real username */
372 printf("username specified with no parameter\n");
373 return 1; /* needs_arg; */
376 if (strnlen(value
, 260) < 260) {
378 percent_char
= strchr(value
,'%');
381 if(mountpassword
== NULL
)
382 mountpassword
= (char *)calloc(65,1);
385 printf("\nmount.cifs warning - password specified twice\n");
388 strncpy(mountpassword
, percent_char
,64);
389 /* remove password from username */
390 while(*percent_char
!= 0) {
396 /* this is only case in which the user
397 name buf is not malloc - so we have to
398 check for domain name embedded within
399 the user name here since the later
400 call to check_for_domain will not be
402 domain_name
= check_for_domain(&value
);
404 printf("username too long\n");
408 } else if (strncmp(data
, "pass", 4) == 0) {
409 if (!value
|| !*value
) {
411 printf("\npassword specified twice, ignoring second\n");
414 } else if (strnlen(value
, 17) < 17) {
416 printf("\nmount.cifs warning - password specified twice\n");
419 printf("password too long\n");
422 } else if (strncmp(data
, "ip", 2) == 0) {
423 if (!value
|| !*value
) {
424 printf("target ip address argument missing");
425 } else if (strnlen(value
, 35) < 35) {
427 printf("ip address %s override specified\n",value
);
430 printf("ip address too long\n");
433 } else if ((strncmp(data
, "unc", 3) == 0)
434 || (strncmp(data
, "target", 6) == 0)
435 || (strncmp(data
, "path", 4) == 0)) {
436 if (!value
|| !*value
) {
437 printf("invalid path to network resource\n");
438 return 1; /* needs_arg; */
439 } else if(strnlen(value
,5) < 5) {
440 printf("UNC name too short");
443 if (strnlen(value
, 300) < 300) {
445 if (strncmp(value
, "//", 2) == 0) {
447 printf("unc name specified twice, ignoring second\n");
450 } else if (strncmp(value
, "\\\\", 2) != 0) {
451 printf("UNC Path does not begin with // or \\\\ \n");
455 printf("unc name specified twice, ignoring second\n");
460 printf("CIFS: UNC name too long\n");
463 } else if ((strncmp(data
, "domain", 3) == 0)
464 || (strncmp(data
, "workgroup", 5) == 0)) {
465 if (!value
|| !*value
) {
466 printf("CIFS: invalid domain name\n");
467 return 1; /* needs_arg; */
469 if (strnlen(value
, 65) < 65) {
472 printf("domain name too long\n");
475 } else if (strncmp(data
, "cred", 4) == 0) {
476 if (value
&& *value
) {
477 rc
= open_cred_file(value
);
479 printf("error %d opening credential file %s\n",rc
, value
);
483 printf("invalid credential file name specified\n");
486 } else if (strncmp(data
, "uid", 3) == 0) {
487 if (value
&& *value
) {
489 if (!isdigit(*value
)) {
491 static char temp
[32];
493 if (!(pw
= getpwnam(value
))) {
494 printf("bad user name \"%s\"\n", value
);
497 sprintf(temp
, "%u", pw
->pw_uid
);
502 } else if (strncmp(data
, "gid", 3) == 0) {
503 if (value
&& *value
) {
505 if (!isdigit(*value
)) {
507 static char temp
[32];
509 if (!(gr
= getgrnam(value
))) {
510 printf("bad group name \"%s\"\n", value
);
513 sprintf(temp
, "%u", gr
->gr_gid
);
518 /* fmask and dmask synonyms for people used to smbfs syntax */
519 } else if (strcmp(data
, "file_mode") == 0 || strcmp(data
, "fmask")==0) {
520 if (!value
|| !*value
) {
521 printf ("Option '%s' requires a numerical argument\n", data
);
525 if (value
[0] != '0') {
526 printf ("WARNING: '%s' not expressed in octal.\n", data
);
529 if (strcmp (data
, "fmask") == 0) {
530 printf ("WARNING: CIFS mount option 'fmask' is deprecated. Use 'file_mode' instead.\n");
531 data
= "file_mode"; /* BB fix this */
533 } else if (strcmp(data
, "dir_mode") == 0 || strcmp(data
, "dmask")==0) {
534 if (!value
|| !*value
) {
535 printf ("Option '%s' requires a numerical argument\n", data
);
539 if (value
[0] != '0') {
540 printf ("WARNING: '%s' not expressed in octal.\n", data
);
543 if (strcmp (data
, "dmask") == 0) {
544 printf ("WARNING: CIFS mount option 'dmask' is deprecated. Use 'dir_mode' instead.\n");
547 /* the following eight mount options should be
548 stripped out from what is passed into the kernel
549 since these eight options are best passed as the
550 mount flags rather than redundantly to the kernel
551 and could generate spurious warnings depending on the
552 level of the corresponding cifs vfs kernel code */
553 } else if (strncmp(data
, "nosuid", 6) == 0) {
554 *filesys_flags
|= MS_NOSUID
;
555 } else if (strncmp(data
, "suid", 4) == 0) {
556 *filesys_flags
&= ~MS_NOSUID
;
557 } else if (strncmp(data
, "nodev", 5) == 0) {
558 *filesys_flags
|= MS_NODEV
;
559 } else if ((strncmp(data
, "nobrl", 5) == 0) ||
560 (strncmp(data
, "nolock", 6) == 0)) {
561 *filesys_flags
&= ~MS_MANDLOCK
;
562 } else if (strncmp(data
, "dev", 3) == 0) {
563 *filesys_flags
&= ~MS_NODEV
;
564 } else if (strncmp(data
, "noexec", 6) == 0) {
565 *filesys_flags
|= MS_NOEXEC
;
566 } else if (strncmp(data
, "exec", 4) == 0) {
567 *filesys_flags
&= ~MS_NOEXEC
;
568 } else if (strncmp(data
, "guest", 5) == 0) {
570 /* remove the parm since it would otherwise be logged by kern */
572 } else if (strncmp(data
, "ro", 2) == 0) {
573 *filesys_flags
|= MS_RDONLY
;
574 } else if (strncmp(data
, "rw", 2) == 0) {
575 *filesys_flags
&= ~MS_RDONLY
;
576 } else if (strncmp(data
, "remount", 7) == 0) {
577 *filesys_flags
|= MS_REMOUNT
;
578 } /* else if (strnicmp(data, "port", 4) == 0) {
579 if (value && *value) {
581 simple_strtoul(value, &value, 0);
583 } else if (strnicmp(data, "rsize", 5) == 0) {
584 if (value && *value) {
586 simple_strtoul(value, &value, 0);
588 } else if (strnicmp(data, "wsize", 5) == 0) {
589 if (value && *value) {
591 simple_strtoul(value, &value, 0);
593 } else if (strnicmp(data, "version", 3) == 0) {
595 printf("CIFS: Unknown mount option %s\n",data);
596 } */ /* nothing to do on those four mount options above.
597 Just pass to kernel and ignore them here */
599 /* Copy (possibly modified) option to out */
600 word_len
= strlen(data
);
602 word_len
+= 1 + strlen(value
);
604 out
= (char *)realloc(out
, out_len
+ word_len
+ 2);
611 out
[out_len
++] = ',';
613 sprintf(out
+ out_len
, "%s=%s", data
, value
);
615 sprintf(out
+ out_len
, "%s", data
);
616 out_len
= strlen(out
);
626 /* replace all (one or more) commas with double commas */
627 static void check_for_comma(char ** ppasswrd
)
632 int number_of_commas
= 0;
647 if(number_of_commas
== 0)
649 if(number_of_commas
> 64) {
650 /* would otherwise overflow the mount options buffer */
651 printf("\nInvalid password. Password contains too many commas.\n");
655 new_pass_buf
= (char *)malloc(len
+number_of_commas
+1);
656 if(new_pass_buf
== NULL
)
659 for(i
=0,j
=0;i
<len
;i
++,j
++) {
660 new_pass_buf
[j
] = pass
[i
];
663 new_pass_buf
[j
] = pass
[i
];
666 new_pass_buf
[len
+number_of_commas
] = 0;
669 *ppasswrd
= new_pass_buf
;
674 /* Usernames can not have backslash in them and we use
675 [BB check if usernames can have forward slash in them BB]
676 backslash as domain\user separator character
678 static char * check_for_domain(char **ppuser
)
680 char * original_string
;
690 original_string
= *ppuser
;
692 if (original_string
== NULL
)
695 original_len
= strlen(original_string
);
697 usernm
= strchr(*ppuser
,'/');
698 if (usernm
== NULL
) {
699 usernm
= strchr(*ppuser
,'\\');
705 printf("Domain name specified twice. Username probably malformed\n");
711 if (domainnm
[0] != 0) {
714 printf("null domain\n");
716 len
= strlen(domainnm
);
717 /* reset domainm to new buffer, and copy
718 domain name into it */
719 domainnm
= (char *)malloc(len
+1);
723 strcpy(domainnm
,*ppuser
);
725 /* move_string(*ppuser, usernm+1) */
726 len
= strlen(usernm
+1);
728 if(len
>= original_len
) {
729 /* should not happen */
733 for(i
=0;i
<original_len
;i
++) {
735 original_string
[i
] = usernm
[i
+1];
736 else /* stuff with commas to remove last parm */
737 original_string
[i
] = ',';
740 /* BB add check for more than one slash?
748 /* Note that caller frees the returned buffer if necessary */
749 static char * parse_server(char ** punc_name
)
751 char * unc_name
= *punc_name
;
752 int length
= strnlen(unc_name
,1024);
754 char * ipaddress_string
= NULL
;
755 struct hostent
* host_entry
= NULL
;
756 struct in_addr server_ipaddr
;
759 printf("mount error: UNC name too long");
762 if (strncasecmp("cifs://",unc_name
,7) == 0)
763 return parse_cifs_url(unc_name
+7);
764 if (strncasecmp("smb://",unc_name
,6) == 0) {
765 return parse_cifs_url(unc_name
+6);
769 /* BB add code to find DFS root here */
770 printf("\nMounting the DFS root for domain not implemented yet\n");
773 if(strncmp(unc_name
,"//",2) && strncmp(unc_name
,"\\\\",2)) {
774 /* check for nfs syntax ie server:share */
775 share
= strchr(unc_name
,':');
778 *punc_name
= (char *)malloc(length
+3);
779 if(*punc_name
== NULL
) {
780 /* put the original string back if
782 *punc_name
= unc_name
;
787 strncpy((*punc_name
)+2,unc_name
,length
);
788 unc_name
= *punc_name
;
789 unc_name
[length
+2] = 0;
790 goto continue_unc_parsing
;
792 printf("mount error: improperly formatted UNC name.");
793 printf(" %s does not begin with \\\\ or //\n",unc_name
);
797 continue_unc_parsing
:
801 if ((share
= strchr(unc_name
, '/')) ||
802 (share
= strchr(unc_name
,'\\'))) {
803 *share
= 0; /* temporarily terminate the string */
806 host_entry
= gethostbyname(unc_name
);
808 *(share
- 1) = '/'; /* put the slash back */
809 if ((prefixpath
= strchr(share
, '/'))) {
810 *prefixpath
= 0; /* permanently terminate the string */
811 if (!strlen(++prefixpath
))
812 prefixpath
= NULL
; /* this needs to be done explicitly */
816 printf("ip address specified explicitly\n");
819 if(host_entry
== NULL
) {
820 printf("mount error: could not find target server. TCP name %s not found\n", unc_name
);
823 /* BB should we pass an alternate version of the share name as Unicode */
824 /* BB what about ipv6? BB */
825 /* BB add retries with alternate servers in list */
827 memcpy(&server_ipaddr
.s_addr
, host_entry
->h_addr
, 4);
829 ipaddress_string
= inet_ntoa(server_ipaddr
);
830 if(ipaddress_string
== NULL
) {
831 printf("mount error: could not get valid ip address for target server\n");
834 return ipaddress_string
;
837 /* BB add code to find DFS root (send null path on get DFS Referral to specified server here */
838 printf("Mounting the DFS root for a particular server not implemented yet\n");
845 static struct option longopts
[] = {
846 { "all", 0, NULL
, 'a' },
847 { "help",0, NULL
, 'h' },
848 { "move",0, NULL
, 'm' },
849 { "bind",0, NULL
, 'b' },
850 { "read-only", 0, NULL
, 'r' },
851 { "ro", 0, NULL
, 'r' },
852 { "verbose", 0, NULL
, 'v' },
853 { "version", 0, NULL
, 'V' },
854 { "read-write", 0, NULL
, 'w' },
855 { "rw", 0, NULL
, 'w' },
856 { "options", 1, NULL
, 'o' },
857 { "type", 1, NULL
, 't' },
858 { "rsize",1, NULL
, 'R' },
859 { "wsize",1, NULL
, 'W' },
860 { "uid", 1, NULL
, '1'},
861 { "gid", 1, NULL
, '2'},
862 { "user",1,NULL
,'u'},
863 { "username",1,NULL
,'u'},
865 { "domain",1,NULL
,'d'},
866 { "password",1,NULL
,'p'},
867 { "pass",1,NULL
,'p'},
868 { "credentials",1,NULL
,'c'},
869 { "port",1,NULL
,'P'},
870 /* { "uuid",1,NULL,'U'}, */ /* BB unimplemented */
874 int main(int argc
, char ** argv
)
877 int flags
= MS_MANDLOCK
; /* no need to set legacy MS_MGC_VAL */
878 char * orgoptions
= NULL
;
879 char * share_name
= NULL
;
880 char * ipaddr
= NULL
;
882 char * mountpoint
= NULL
;
883 char * options
= NULL
;
884 char * resolved_path
= NULL
;
894 int retry
= 0; /* set when we have to retry mount with uppercase */
896 struct utsname sysinfo
;
897 struct mntent mountent
;
900 /* setlocale(LC_ALL, "");
901 bindtextdomain(PACKAGE, LOCALEDIR);
902 textdomain(PACKAGE); */
905 thisprogram
= argv
[0];
911 if(thisprogram
== NULL
)
912 thisprogram
= "mount.cifs";
915 /* BB add workstation name and domain and pass down */
917 /* #ifdef _GNU_SOURCE
918 printf(" node: %s machine: %s sysname %s domain %s\n", sysinfo.nodename,sysinfo.machine,sysinfo.sysname,sysinfo.domainname);
921 share_name
= argv
[1];
922 mountpoint
= argv
[2];
925 /* add sharename in opts string as unc= parm */
927 while ((c
= getopt_long (argc
, argv
, "afFhilL:no:O:rsSU:vVwt:",
928 longopts
, NULL
)) != -1) {
930 /* No code to do the following options yet */
932 list_with_volumelabel = 1;
935 volumelabel = optarg;
953 "option 'b' (MS_BIND) not supported\n");
961 "option 'm' (MS_MOVE) not supported\n");
965 orgoptions
= strdup(optarg
);
967 case 'r': /* mount readonly */
977 printf ("mount.cifs version: %s.%s%s\n",
978 MOUNT_CIFS_VERSION_MAJOR
,
979 MOUNT_CIFS_VERSION_MINOR
,
980 MOUNT_CIFS_VENDOR_SUFFIX
);
982 memset(mountpassword
,0,64);
989 rsize
= atoi(optarg
) ;
992 wsize
= atoi(optarg
);
995 if (isdigit(*optarg
)) {
998 uid
= strtoul(optarg
, &ep
, 10);
1000 printf("bad uid value \"%s\"\n", optarg
);
1006 if (!(pw
= getpwnam(optarg
))) {
1007 printf("bad user name \"%s\"\n", optarg
);
1015 if (isdigit(*optarg
)) {
1018 gid
= strtoul(optarg
, &ep
, 10);
1020 printf("bad gid value \"%s\"\n", optarg
);
1026 if (!(gr
= getgrnam(optarg
))) {
1027 printf("bad user name \"%s\"\n", optarg
);
1039 domain_name
= optarg
; /* BB fix this - currently ignored */
1043 if(mountpassword
== NULL
)
1044 mountpassword
= (char *)calloc(65,1);
1047 strncpy(mountpassword
,optarg
,64);
1051 get_password_from_file(0 /* stdin */,NULL
);
1056 printf("unknown mount option %c\n",c
);
1062 if((argc
< 3) || (share_name
== NULL
) || (mountpoint
== NULL
)) {
1067 if (getenv("PASSWD")) {
1068 if(mountpassword
== NULL
)
1069 mountpassword
= (char *)calloc(65,1);
1071 strncpy(mountpassword
,getenv("PASSWD"),64);
1074 } else if (getenv("PASSWD_FD")) {
1075 get_password_from_file(atoi(getenv("PASSWD_FD")),NULL
);
1076 } else if (getenv("PASSWD_FILE")) {
1077 get_password_from_file(0, getenv("PASSWD_FILE"));
1080 if (orgoptions
&& parse_options(&orgoptions
, &flags
)) {
1084 ipaddr
= parse_server(&share_name
);
1085 if((ipaddr
== NULL
) && (got_ip
== 0)) {
1086 printf("No ip address specified and hostname not found\n");
1091 /* BB save off path and pop after mount returns? */
1092 resolved_path
= (char *)malloc(PATH_MAX
+1);
1094 /* Note that if we can not canonicalize the name, we get
1095 another chance to see if it is valid when we chdir to it */
1096 if (realpath(mountpoint
, resolved_path
)) {
1097 mountpoint
= resolved_path
;
1100 if(chdir(mountpoint
)) {
1101 printf("mount error: can not change directory into mount target %s\n",mountpoint
);
1106 if(stat (".", &statbuf
)) {
1107 printf("mount error: mount point %s does not exist\n",mountpoint
);
1112 if (S_ISDIR(statbuf
.st_mode
) == 0) {
1113 printf("mount error: mount point %s is not a directory\n",mountpoint
);
1118 if((getuid() != 0) && (geteuid() == 0)) {
1119 if((statbuf
.st_uid
== getuid()) && (S_IRWXU
== (statbuf
.st_mode
& S_IRWXU
))) {
1120 #ifndef CIFS_ALLOW_USR_SUID
1121 /* Do not allow user mounts to control suid flag
1122 for mount unless explicitly built that way */
1123 flags
|= MS_NOSUID
| MS_NODEV
;
1126 printf("mount error: permission denied or not superuser and mount.cifs not installed SUID\n");
1132 user_name
= getusername();
1136 if(got_password
== 0) {
1137 mountpassword
= getpass("Password: "); /* BB obsolete */
1140 /* FIXME launch daemon (handles dfs name resolution and credential change)
1141 remember to clear parms and overwrite password field before launching */
1144 optlen
= strlen(orgoptions
);
1149 optlen
+= strlen(share_name
) + 4;
1151 printf("No server share name specified\n");
1152 printf("\nMounting the DFS root for server not implemented yet\n");
1156 optlen
+= strlen(user_name
) + 6;
1158 optlen
+= strlen(ipaddr
) + 4;
1160 optlen
+= strlen(mountpassword
) + 6;
1163 options
= (char *)malloc(optlen
+ 10 + 64 /* space for commas in password */ + 8 /* space for domain= , domain name itself was counted as part of the length username string above */);
1165 if(options
== NULL
) {
1166 printf("Could not allocate memory for mount options\n");
1172 strncat(options
,"unc=",4);
1173 strcat(options
,share_name
);
1174 /* scan backwards and reverse direction of slash */
1175 temp
= strrchr(options
, '/');
1176 if(temp
> options
+ 6)
1179 strncat(options
,",ip=",4);
1180 strcat(options
,ipaddr
);
1184 /* check for syntax like user=domain\user */
1186 domain_name
= check_for_domain(&user_name
);
1187 strncat(options
,",user=",6);
1188 strcat(options
,user_name
);
1192 /* extra length accounted for in option string above */
1193 strncat(options
,",domain=",8);
1194 strcat(options
,domain_name
);
1198 /* Commas have to be doubled, or else they will
1199 look like the parameter separator */
1200 /* if(sep is not set)*/
1202 check_for_comma(&mountpassword
);
1203 strncat(options
,",pass=",6);
1204 strcat(options
,mountpassword
);
1207 strncat(options
,",ver=",5);
1208 strcat(options
,MOUNT_CIFS_VERSION_MAJOR
);
1211 strcat(options
,",");
1212 strcat(options
,orgoptions
);
1215 strncat(options
,",prefixpath=",12);
1216 strcat(options
,prefixpath
); /* no need to cat the / */
1219 printf("\nmount.cifs kernel mount options %s \n",options
);
1220 if(mount(share_name
, mountpoint
, "cifs", flags
, options
)) {
1221 /* remember to kill daemon on error */
1226 printf("mount failed but no error number set\n");
1229 printf("mount error: cifs filesystem not supported by the system\n");
1235 while (*tmp
&& !(((unsigned char)tmp
[0]) & 0x80)) {
1236 *tmp
= toupper((unsigned char)*tmp
);
1240 printf("retrying with upper case share name\n");
1245 printf("mount error %d = %s\n",errno
,strerror(errno
));
1247 printf("Refer to the mount.cifs(8) manual page (e.g.man mount.cifs)\n");
1251 pmntfile
= setmntent(MOUNTED
, "a+");
1253 mountent
.mnt_fsname
= share_name
;
1254 mountent
.mnt_dir
= mountpoint
;
1255 mountent
.mnt_type
= CONST_DISCARD(char *,"cifs");
1256 mountent
.mnt_opts
= (char *)malloc(220);
1257 if(mountent
.mnt_opts
) {
1258 char * mount_user
= getusername();
1259 memset(mountent
.mnt_opts
,0,200);
1260 if(flags
& MS_RDONLY
)
1261 strcat(mountent
.mnt_opts
,"ro");
1263 strcat(mountent
.mnt_opts
,"rw");
1264 if(flags
& MS_MANDLOCK
)
1265 strcat(mountent
.mnt_opts
,",mand");
1266 if(flags
& MS_NOEXEC
)
1267 strcat(mountent
.mnt_opts
,",noexec");
1268 if(flags
& MS_NOSUID
)
1269 strcat(mountent
.mnt_opts
,",nosuid");
1270 if(flags
& MS_NODEV
)
1271 strcat(mountent
.mnt_opts
,",nodev");
1272 if(flags
& MS_SYNCHRONOUS
)
1273 strcat(mountent
.mnt_opts
,",synch");
1276 strcat(mountent
.mnt_opts
,",user=");
1277 strcat(mountent
.mnt_opts
,mount_user
);
1279 /* free(mount_user); do not free static mem */
1282 mountent
.mnt_freq
= 0;
1283 mountent
.mnt_passno
= 0;
1284 rc
= addmntent(pmntfile
,&mountent
);
1285 endmntent(pmntfile
);
1286 if(mountent
.mnt_opts
)
1287 free(mountent
.mnt_opts
);
1289 printf("could not update mount table\n");
1295 int len
= strlen(mountpassword
);
1296 memset(mountpassword
,0,len
);
1297 free(mountpassword
);
1301 memset(options
,0,optlen
);
1306 memset(orgoptions
,0,orgoptlen
);
1310 free(resolved_path
);
1313 if(free_share_name
) {