s4 dns: Forward questions we can't answer to another server
[Samba/bb.git] / source3 / smbd / service.c
blobc4d3486cdf6b662c816bed34e7bbc83345af8591
1 /*
2 Unix SMB/CIFS implementation.
3 service (connection) opening and closing
4 Copyright (C) Andrew Tridgell 1992-1998
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/>.
20 #include "includes.h"
21 #include "system/filesys.h"
22 #include "system/passwd.h" /* uid_wrapper */
23 #include "../lib/tsocket/tsocket.h"
24 #include "smbd/smbd.h"
25 #include "smbd/globals.h"
26 #include "../librpc/gen_ndr/netlogon.h"
27 #include "../libcli/security/security.h"
28 #include "printing/pcap.h"
29 #include "passdb/lookup_sid.h"
30 #include "auth.h"
31 #include "lib/param/loadparm.h"
32 #include "messages.h"
34 extern userdom_struct current_user_info;
36 static bool canonicalize_connect_path(connection_struct *conn)
38 bool ret;
39 char *resolved_name = SMB_VFS_REALPATH(conn,conn->connectpath);
40 if (!resolved_name) {
41 return false;
43 ret = set_conn_connectpath(conn,resolved_name);
44 SAFE_FREE(resolved_name);
45 return ret;
48 /****************************************************************************
49 Ensure when setting connectpath it is a canonicalized (no ./ // or ../)
50 absolute path stating in / and not ending in /.
51 Observent people will notice a similarity between this and check_path_syntax :-).
52 ****************************************************************************/
54 bool set_conn_connectpath(connection_struct *conn, const char *connectpath)
56 char *destname;
57 char *d;
58 const char *s = connectpath;
59 bool start_of_name_component = true;
61 if (connectpath == NULL || connectpath[0] == '\0') {
62 return false;
65 /* Allocate for strlen + '\0' + possible leading '/' */
66 destname = (char *)SMB_MALLOC(strlen(connectpath) + 2);
67 if (!destname) {
68 return false;
70 d = destname;
72 *d++ = '/'; /* Always start with root. */
74 while (*s) {
75 if (*s == '/') {
76 /* Eat multiple '/' */
77 while (*s == '/') {
78 s++;
80 if ((d > destname + 1) && (*s != '\0')) {
81 *d++ = '/';
83 start_of_name_component = True;
84 continue;
87 if (start_of_name_component) {
88 if ((s[0] == '.') && (s[1] == '.') && (s[2] == '/' || s[2] == '\0')) {
89 /* Uh oh - "/../" or "/..\0" ! */
91 /* Go past the ../ or .. */
92 if (s[2] == '/') {
93 s += 3;
94 } else {
95 s += 2; /* Go past the .. */
98 /* If we just added a '/' - delete it */
99 if ((d > destname) && (*(d-1) == '/')) {
100 *(d-1) = '\0';
101 d--;
104 /* Are we at the start ? Can't go back further if so. */
105 if (d <= destname) {
106 *d++ = '/'; /* Can't delete root */
107 continue;
109 /* Go back one level... */
110 /* Decrement d first as d points to the *next* char to write into. */
111 for (d--; d > destname; d--) {
112 if (*d == '/') {
113 break;
116 /* We're still at the start of a name component, just the previous one. */
117 continue;
118 } else if ((s[0] == '.') && ((s[1] == '\0') || s[1] == '/')) {
119 /* Component of pathname can't be "." only - skip the '.' . */
120 if (s[1] == '/') {
121 s += 2;
122 } else {
123 s++;
125 continue;
129 if (!(*s & 0x80)) {
130 *d++ = *s++;
131 } else {
132 size_t siz;
133 /* Get the size of the next MB character. */
134 next_codepoint(s,&siz);
135 switch(siz) {
136 case 5:
137 *d++ = *s++;
138 /*fall through*/
139 case 4:
140 *d++ = *s++;
141 /*fall through*/
142 case 3:
143 *d++ = *s++;
144 /*fall through*/
145 case 2:
146 *d++ = *s++;
147 /*fall through*/
148 case 1:
149 *d++ = *s++;
150 break;
151 default:
152 break;
155 start_of_name_component = false;
157 *d = '\0';
159 /* And must not end in '/' */
160 if (d > destname + 1 && (*(d-1) == '/')) {
161 *(d-1) = '\0';
164 DEBUG(10,("set_conn_connectpath: service %s, connectpath = %s\n",
165 lp_servicename(SNUM(conn)), destname ));
167 string_set(&conn->connectpath, destname);
168 SAFE_FREE(destname);
169 return true;
172 /****************************************************************************
173 Load parameters specific to a connection/service.
174 ****************************************************************************/
176 bool set_current_service(connection_struct *conn, uint16 flags, bool do_chdir)
178 int snum;
180 if (!conn) {
181 last_conn = NULL;
182 return(False);
185 conn->lastused_count++;
187 snum = SNUM(conn);
189 if (do_chdir &&
190 vfs_ChDir(conn,conn->connectpath) != 0 &&
191 vfs_ChDir(conn,conn->origpath) != 0) {
192 DEBUG(((errno!=EACCES)?0:3),("chdir (%s) failed, reason: %s\n",
193 conn->connectpath, strerror(errno)));
194 return(False);
197 if ((conn == last_conn) && (last_flags == flags)) {
198 return(True);
201 last_conn = conn;
202 last_flags = flags;
204 /* Obey the client case sensitivity requests - only for clients that support it. */
205 switch (lp_casesensitive(snum)) {
206 case Auto:
208 /* We need this uglyness due to DOS/Win9x clients that lie about case insensitivity. */
209 enum remote_arch_types ra_type = get_remote_arch();
210 if ((ra_type != RA_SAMBA) && (ra_type != RA_CIFSFS)) {
211 /* Client can't support per-packet case sensitive pathnames. */
212 conn->case_sensitive = False;
213 } else {
214 conn->case_sensitive = !(flags & FLAG_CASELESS_PATHNAMES);
217 break;
218 case True:
219 conn->case_sensitive = True;
220 break;
221 default:
222 conn->case_sensitive = False;
223 break;
225 return(True);
228 /****************************************************************************
229 do some basic sainity checks on the share.
230 This function modifies dev, ecode.
231 ****************************************************************************/
233 static NTSTATUS share_sanity_checks(const struct tsocket_address *remote_address,
234 const char *rhost,
235 int snum,
236 fstring dev)
238 char *raddr;
240 raddr = tsocket_address_inet_addr_string(remote_address,
241 talloc_tos());
242 if (raddr == NULL) {
243 return NT_STATUS_NO_MEMORY;
246 if (!lp_snum_ok(snum) ||
247 !allow_access(lp_hostsdeny(snum), lp_hostsallow(snum),
248 rhost, raddr)) {
249 return NT_STATUS_ACCESS_DENIED;
252 if (dev[0] == '?' || !dev[0]) {
253 if (lp_print_ok(snum)) {
254 fstrcpy(dev,"LPT1:");
255 } else if (strequal(lp_fstype(snum), "IPC")) {
256 fstrcpy(dev, "IPC");
257 } else {
258 fstrcpy(dev,"A:");
262 strupper_m(dev);
264 if (lp_print_ok(snum)) {
265 if (!strequal(dev, "LPT1:")) {
266 return NT_STATUS_BAD_DEVICE_TYPE;
268 } else if (strequal(lp_fstype(snum), "IPC")) {
269 if (!strequal(dev, "IPC")) {
270 return NT_STATUS_BAD_DEVICE_TYPE;
272 } else if (!strequal(dev, "A:")) {
273 return NT_STATUS_BAD_DEVICE_TYPE;
276 /* Behave as a printer if we are supposed to */
277 if (lp_print_ok(snum) && (strcmp(dev, "A:") == 0)) {
278 fstrcpy(dev, "LPT1:");
281 return NT_STATUS_OK;
285 * Go through lookup_name etc to find the force'd group.
287 * Create a new token from src_token, replacing the primary group sid with the
288 * one found.
291 static NTSTATUS find_forced_group(bool force_user,
292 int snum, const char *username,
293 struct dom_sid *pgroup_sid,
294 gid_t *pgid)
296 NTSTATUS result = NT_STATUS_NO_SUCH_GROUP;
297 TALLOC_CTX *frame = talloc_stackframe();
298 struct dom_sid group_sid;
299 enum lsa_SidType type;
300 char *groupname;
301 bool user_must_be_member = False;
302 gid_t gid;
304 groupname = talloc_strdup(talloc_tos(), lp_force_group(snum));
305 if (groupname == NULL) {
306 DEBUG(1, ("talloc_strdup failed\n"));
307 result = NT_STATUS_NO_MEMORY;
308 goto done;
311 if (groupname[0] == '+') {
312 user_must_be_member = True;
313 groupname += 1;
316 groupname = talloc_string_sub(talloc_tos(), groupname,
317 "%S", lp_servicename(snum));
318 if (groupname == NULL) {
319 DEBUG(1, ("talloc_string_sub failed\n"));
320 result = NT_STATUS_NO_MEMORY;
321 goto done;
324 if (!lookup_name_smbconf(talloc_tos(), groupname,
325 LOOKUP_NAME_ALL|LOOKUP_NAME_GROUP,
326 NULL, NULL, &group_sid, &type)) {
327 DEBUG(10, ("lookup_name_smbconf(%s) failed\n",
328 groupname));
329 goto done;
332 if ((type != SID_NAME_DOM_GRP) && (type != SID_NAME_ALIAS) &&
333 (type != SID_NAME_WKN_GRP)) {
334 DEBUG(10, ("%s is a %s, not a group\n", groupname,
335 sid_type_lookup(type)));
336 goto done;
339 if (!sid_to_gid(&group_sid, &gid)) {
340 DEBUG(10, ("sid_to_gid(%s) for %s failed\n",
341 sid_string_dbg(&group_sid), groupname));
342 goto done;
346 * If the user has been forced and the forced group starts with a '+',
347 * then we only set the group to be the forced group if the forced
348 * user is a member of that group. Otherwise, the meaning of the '+'
349 * would be ignored.
352 if (force_user && user_must_be_member) {
353 if (user_in_group_sid(username, &group_sid)) {
354 sid_copy(pgroup_sid, &group_sid);
355 *pgid = gid;
356 DEBUG(3,("Forced group %s for member %s\n",
357 groupname, username));
358 } else {
359 DEBUG(0,("find_forced_group: forced user %s is not a member "
360 "of forced group %s. Disallowing access.\n",
361 username, groupname ));
362 result = NT_STATUS_MEMBER_NOT_IN_GROUP;
363 goto done;
365 } else {
366 sid_copy(pgroup_sid, &group_sid);
367 *pgid = gid;
368 DEBUG(3,("Forced group %s\n", groupname));
371 result = NT_STATUS_OK;
372 done:
373 TALLOC_FREE(frame);
374 return result;
377 /****************************************************************************
378 Create an auth_session_info structure for a connection_struct
379 ****************************************************************************/
381 static NTSTATUS create_connection_session_info(struct smbd_server_connection *sconn,
382 TALLOC_CTX *mem_ctx, int snum,
383 struct auth_session_info *session_info,
384 struct auth_session_info **presult)
386 struct auth_session_info *result;
388 if (lp_guest_only(snum)) {
389 return make_session_info_guest(mem_ctx, presult);
393 * This is the normal security != share case where we have a
394 * valid vuid from the session setup. */
396 if (security_session_user_level(session_info, NULL) < SECURITY_USER) {
397 if (!lp_guest_ok(snum)) {
398 DEBUG(2, ("guest user (from session setup) "
399 "not permitted to access this share "
400 "(%s)\n", lp_servicename(snum)));
401 return NT_STATUS_ACCESS_DENIED;
403 } else {
404 if (!user_ok_token(session_info->unix_info->unix_name,
405 session_info->info->domain_name,
406 session_info->security_token, snum)) {
407 DEBUG(2, ("user '%s' (from session setup) not "
408 "permitted to access this share "
409 "(%s)\n",
410 session_info->unix_info->unix_name,
411 lp_servicename(snum)));
412 return NT_STATUS_ACCESS_DENIED;
416 result = copy_session_info(mem_ctx, session_info);
417 if (result == NULL) {
418 return NT_STATUS_NO_MEMORY;
421 *presult = result;
422 return NT_STATUS_OK;
425 /****************************************************************************
426 set relavent user and group settings corresponding to force user/group
427 configuration for the given snum.
428 ****************************************************************************/
430 NTSTATUS set_conn_force_user_group(connection_struct *conn, int snum)
432 NTSTATUS status;
434 if (*lp_force_user(snum)) {
437 * Replace conn->session_info with a completely faked up one
438 * from the username we are forced into :-)
441 char *fuser;
442 struct auth_session_info *forced_serverinfo;
443 bool guest;
445 fuser = talloc_string_sub(conn, lp_force_user(snum), "%S",
446 lp_const_servicename(snum));
447 if (fuser == NULL) {
448 return NT_STATUS_NO_MEMORY;
451 guest = security_session_user_level(conn->session_info, NULL) < SECURITY_USER;
453 status = make_session_info_from_username(
454 conn, fuser,
455 guest,
456 &forced_serverinfo);
457 if (!NT_STATUS_IS_OK(status)) {
458 return status;
461 TALLOC_FREE(conn->session_info);
462 conn->session_info = forced_serverinfo;
464 conn->force_user = true;
465 DEBUG(3,("Forced user %s\n", fuser));
469 * If force group is true, then override
470 * any groupid stored for the connecting user.
473 if (*lp_force_group(snum)) {
475 status = find_forced_group(
476 conn->force_user, snum, conn->session_info->unix_info->unix_name,
477 &conn->session_info->security_token->sids[1],
478 &conn->session_info->unix_token->gid);
480 if (!NT_STATUS_IS_OK(status)) {
481 return status;
485 * We need to cache this gid, to use within
486 * change_to_user() separately from the conn->session_info
487 * struct. We only use conn->session_info directly if
488 * "force_user" was set.
490 conn->force_group_gid = conn->session_info->unix_token->gid;
493 return NT_STATUS_OK;
496 /****************************************************************************
497 Setup the share access mask for a connection.
498 ****************************************************************************/
500 static void create_share_access_mask(connection_struct *conn, int snum)
502 const struct security_token *token = conn->session_info->security_token;
504 share_access_check(token,
505 lp_servicename(snum),
506 MAXIMUM_ALLOWED_ACCESS,
507 &conn->share_access);
509 if (security_token_has_privilege(token, SEC_PRIV_SECURITY)) {
510 conn->share_access |= SEC_FLAG_SYSTEM_SECURITY;
512 if (security_token_has_privilege(token, SEC_PRIV_RESTORE)) {
513 conn->share_access |= (SEC_RIGHTS_PRIV_RESTORE);
515 if (security_token_has_privilege(token, SEC_PRIV_BACKUP)) {
516 conn->share_access |= (SEC_RIGHTS_PRIV_BACKUP);
518 if (security_token_has_privilege(token, SEC_PRIV_TAKE_OWNERSHIP)) {
519 conn->share_access |= (SEC_STD_WRITE_OWNER);
523 /****************************************************************************
524 Make a connection, given the snum to connect to, and the vuser of the
525 connecting user if appropriate.
526 ****************************************************************************/
528 static NTSTATUS make_connection_snum(struct smbd_server_connection *sconn,
529 connection_struct *conn,
530 int snum, user_struct *vuser,
531 const char *pdev)
533 struct smb_filename *smb_fname_cpath = NULL;
534 fstring dev;
535 int ret;
536 bool on_err_call_dis_hook = false;
537 bool claimed_connection = false;
538 uid_t effuid;
539 gid_t effgid;
540 NTSTATUS status;
542 fstrcpy(dev, pdev);
544 status = share_sanity_checks(sconn->remote_address,
545 sconn->remote_hostname,
546 snum,
547 dev);
548 if (NT_STATUS_IS_ERR(status)) {
549 goto err_root_exit;
552 conn->params->service = snum;
554 status = create_connection_session_info(sconn,
555 conn, snum, vuser->session_info,
556 &conn->session_info);
558 if (!NT_STATUS_IS_OK(status)) {
559 DEBUG(1, ("create_connection_session_info failed: %s\n",
560 nt_errstr(status)));
561 goto err_root_exit;
564 if (lp_guest_only(snum)) {
565 conn->force_user = true;
568 conn->num_files_open = 0;
569 conn->lastused = conn->lastused_count = time(NULL);
570 conn->used = True;
571 conn->printer = (strncmp(dev,"LPT",3) == 0);
572 conn->ipc = ( (strncmp(dev,"IPC",3) == 0) ||
573 ( lp_enable_asu_support() && strequal(dev,"ADMIN$")) );
575 /* Case options for the share. */
576 if (lp_casesensitive(snum) == Auto) {
577 /* We will be setting this per packet. Set to be case
578 * insensitive for now. */
579 conn->case_sensitive = False;
580 } else {
581 conn->case_sensitive = (bool)lp_casesensitive(snum);
584 conn->case_preserve = lp_preservecase(snum);
585 conn->short_case_preserve = lp_shortpreservecase(snum);
587 conn->encrypt_level = lp_smb_encrypt(snum);
589 conn->veto_list = NULL;
590 conn->hide_list = NULL;
591 conn->veto_oplock_list = NULL;
592 conn->aio_write_behind_list = NULL;
594 conn->read_only = lp_readonly(SNUM(conn));
596 status = set_conn_force_user_group(conn, snum);
597 if (!NT_STATUS_IS_OK(status)) {
598 goto err_root_exit;
601 conn->vuid = vuser->vuid;
604 char *s = talloc_sub_advanced(talloc_tos(),
605 lp_servicename(SNUM(conn)),
606 conn->session_info->unix_info->unix_name,
607 conn->connectpath,
608 conn->session_info->unix_token->gid,
609 conn->session_info->unix_info->sanitized_username,
610 conn->session_info->info->domain_name,
611 lp_pathname(snum));
612 if (!s) {
613 status = NT_STATUS_NO_MEMORY;
614 goto err_root_exit;
617 if (!set_conn_connectpath(conn,s)) {
618 TALLOC_FREE(s);
619 status = NT_STATUS_NO_MEMORY;
620 goto err_root_exit;
622 DEBUG(3,("Connect path is '%s' for service [%s]\n",s,
623 lp_servicename(snum)));
624 TALLOC_FREE(s);
628 * New code to check if there's a share security descripter
629 * added from NT server manager. This is done after the
630 * smb.conf checks are done as we need a uid and token. JRA.
634 create_share_access_mask(conn, snum);
636 if ((conn->share_access & FILE_WRITE_DATA) == 0) {
637 if ((conn->share_access & FILE_READ_DATA) == 0) {
638 /* No access, read or write. */
639 DEBUG(0,("make_connection: connection to %s "
640 "denied due to security "
641 "descriptor.\n",
642 lp_servicename(snum)));
643 status = NT_STATUS_ACCESS_DENIED;
644 goto err_root_exit;
645 } else {
646 conn->read_only = True;
649 /* Initialise VFS function pointers */
651 if (!smbd_vfs_init(conn)) {
652 DEBUG(0, ("vfs_init failed for service %s\n",
653 lp_servicename(snum)));
654 status = NT_STATUS_BAD_NETWORK_NAME;
655 goto err_root_exit;
658 /* ROOT Activities: */
659 /* explicitly check widelinks here so that we can correctly warn
660 * in the logs. */
661 widelinks_warning(snum);
664 * Enforce the max connections parameter.
667 if ((lp_max_connections(snum) > 0)
668 && (count_current_connections(lp_servicename(SNUM(conn)), True) >=
669 lp_max_connections(snum))) {
671 DEBUG(1, ("Max connections (%d) exceeded for %s\n",
672 lp_max_connections(snum), lp_servicename(snum)));
673 status = NT_STATUS_INSUFFICIENT_RESOURCES;
674 goto err_root_exit;
678 * Get us an entry in the connections db
680 if (!claim_connection(conn, lp_servicename(snum))) {
681 DEBUG(1, ("Could not store connections entry\n"));
682 status = NT_STATUS_INTERNAL_DB_ERROR;
683 goto err_root_exit;
685 claimed_connection = true;
687 /* Invoke VFS make connection hook - this must be the first
688 filesystem operation that we do. */
690 if (SMB_VFS_CONNECT(conn, lp_servicename(snum),
691 conn->session_info->unix_info->unix_name) < 0) {
692 DEBUG(0,("make_connection: VFS make connection failed!\n"));
693 status = NT_STATUS_UNSUCCESSFUL;
694 goto err_root_exit;
697 /* Any error exit after here needs to call the disconnect hook. */
698 on_err_call_dis_hook = true;
700 if ((!conn->printer) && (!conn->ipc) &&
701 lp_change_notify(conn->params)) {
702 if (sconn->notify_ctx == NULL) {
703 sconn->notify_ctx = notify_init(
704 sconn, sconn->msg_ctx, sconn->ev_ctx);
706 if (sconn->sys_notify_ctx == NULL) {
707 sconn->sys_notify_ctx = sys_notify_context_create(
708 sconn, sconn->ev_ctx);
713 * Fix compatibility issue pointed out by Volker.
714 * We pass the conn->connectpath to the preexec
715 * scripts as a parameter, so attempt to canonicalize
716 * it here before calling the preexec scripts.
717 * We ignore errors here, as it is possible that
718 * the conn->connectpath doesn't exist yet and
719 * the preexec scripts will create them.
722 (void)canonicalize_connect_path(conn);
724 /* Preexecs are done here as they might make the dir we are to ChDir
725 * to below */
726 /* execute any "root preexec = " line */
727 if (*lp_rootpreexec(snum)) {
728 char *cmd = talloc_sub_advanced(talloc_tos(),
729 lp_servicename(SNUM(conn)),
730 conn->session_info->unix_info->unix_name,
731 conn->connectpath,
732 conn->session_info->unix_token->gid,
733 conn->session_info->unix_info->sanitized_username,
734 conn->session_info->info->domain_name,
735 lp_rootpreexec(snum));
736 DEBUG(5,("cmd=%s\n",cmd));
737 ret = smbrun(cmd,NULL);
738 TALLOC_FREE(cmd);
739 if (ret != 0 && lp_rootpreexec_close(snum)) {
740 DEBUG(1,("root preexec gave %d - failing "
741 "connection\n", ret));
742 status = NT_STATUS_ACCESS_DENIED;
743 goto err_root_exit;
747 /* USER Activites: */
748 if (!change_to_user(conn, conn->vuid)) {
749 /* No point continuing if they fail the basic checks */
750 DEBUG(0,("Can't become connected user!\n"));
751 status = NT_STATUS_LOGON_FAILURE;
752 goto err_root_exit;
755 effuid = geteuid();
756 effgid = getegid();
758 /* Remember that a different vuid can connect later without these
759 * checks... */
761 /* Preexecs are done here as they might make the dir we are to ChDir
762 * to below */
764 /* execute any "preexec = " line */
765 if (*lp_preexec(snum)) {
766 char *cmd = talloc_sub_advanced(talloc_tos(),
767 lp_servicename(SNUM(conn)),
768 conn->session_info->unix_info->unix_name,
769 conn->connectpath,
770 conn->session_info->unix_token->gid,
771 conn->session_info->unix_info->sanitized_username,
772 conn->session_info->info->domain_name,
773 lp_preexec(snum));
774 ret = smbrun(cmd,NULL);
775 TALLOC_FREE(cmd);
776 if (ret != 0 && lp_preexec_close(snum)) {
777 DEBUG(1,("preexec gave %d - failing connection\n",
778 ret));
779 status = NT_STATUS_ACCESS_DENIED;
780 goto err_root_exit;
784 #ifdef WITH_FAKE_KASERVER
785 if (lp_afs_share(snum)) {
786 afs_login(conn);
788 #endif
791 * we've finished with the user stuff - go back to root
792 * so the SMB_VFS_STAT call will only fail on path errors,
793 * not permission problems.
795 change_to_root_user();
796 /* ROOT Activites: */
799 * If widelinks are disallowed we need to canonicalise the connect
800 * path here to ensure we don't have any symlinks in the
801 * connectpath. We will be checking all paths on this connection are
802 * below this directory. We must do this after the VFS init as we
803 * depend on the realpath() pointer in the vfs table. JRA.
805 if (!lp_widelinks(snum)) {
806 if (!canonicalize_connect_path(conn)) {
807 DEBUG(0, ("canonicalize_connect_path failed "
808 "for service %s, path %s\n",
809 lp_servicename(snum),
810 conn->connectpath));
811 status = NT_STATUS_BAD_NETWORK_NAME;
812 goto err_root_exit;
816 /* Add veto/hide lists */
817 if (!IS_IPC(conn) && !IS_PRINT(conn)) {
818 set_namearray( &conn->veto_list, lp_veto_files(snum));
819 set_namearray( &conn->hide_list, lp_hide_files(snum));
820 set_namearray( &conn->veto_oplock_list, lp_veto_oplocks(snum));
821 set_namearray( &conn->aio_write_behind_list,
822 lp_aio_write_behind(snum));
824 status = create_synthetic_smb_fname(talloc_tos(), conn->connectpath,
825 NULL, NULL, &smb_fname_cpath);
826 if (!NT_STATUS_IS_OK(status)) {
827 goto err_root_exit;
830 /* win2000 does not check the permissions on the directory
831 during the tree connect, instead relying on permission
832 check during individual operations. To match this behaviour
833 I have disabled this chdir check (tridge) */
834 /* the alternative is just to check the directory exists */
836 if ((ret = SMB_VFS_STAT(conn, smb_fname_cpath)) != 0 ||
837 !S_ISDIR(smb_fname_cpath->st.st_ex_mode)) {
838 if (ret == 0 && !S_ISDIR(smb_fname_cpath->st.st_ex_mode)) {
839 DEBUG(0,("'%s' is not a directory, when connecting to "
840 "[%s]\n", conn->connectpath,
841 lp_servicename(snum)));
842 } else {
843 DEBUG(0,("'%s' does not exist or permission denied "
844 "when connecting to [%s] Error was %s\n",
845 conn->connectpath, lp_servicename(snum),
846 strerror(errno) ));
848 status = NT_STATUS_BAD_NETWORK_NAME;
849 goto err_root_exit;
851 conn->base_share_dev = smb_fname_cpath->st.st_ex_dev;
853 string_set(&conn->origpath,conn->connectpath);
855 /* Figure out the characteristics of the underlying filesystem. This
856 * assumes that all the filesystem mounted withing a share path have
857 * the same characteristics, which is likely but not guaranteed.
860 conn->fs_capabilities = SMB_VFS_FS_CAPABILITIES(conn, &conn->ts_res);
863 * Print out the 'connected as' stuff here as we need
864 * to know the effective uid and gid we will be using
865 * (at least initially).
868 if( DEBUGLVL( IS_IPC(conn) ? 3 : 1 ) ) {
869 dbgtext( "%s (%s) ", get_remote_machine_name(),
870 tsocket_address_string(conn->sconn->remote_address,
871 talloc_tos()) );
872 dbgtext( "%s", srv_is_signing_active(sconn) ? "signed " : "");
873 dbgtext( "connect to service %s ", lp_servicename(snum) );
874 dbgtext( "initially as user %s ",
875 conn->session_info->unix_info->unix_name );
876 dbgtext( "(uid=%d, gid=%d) ", (int)effuid, (int)effgid );
877 dbgtext( "(pid %d)\n", (int)getpid() );
880 return status;
882 err_root_exit:
884 TALLOC_FREE(smb_fname_cpath);
885 /* We must exit this function as root. */
886 if (geteuid() != 0) {
887 change_to_root_user();
889 if (on_err_call_dis_hook) {
890 /* Call VFS disconnect hook */
891 SMB_VFS_DISCONNECT(conn);
893 if (claimed_connection) {
894 yield_connection(conn, lp_servicename(snum));
896 return status;
899 /****************************************************************************
900 Make a connection to a service from SMB1. Internal interface.
901 ****************************************************************************/
903 static connection_struct *make_connection_smb1(struct smbd_server_connection *sconn,
904 int snum, user_struct *vuser,
905 const char *pdev,
906 NTSTATUS *pstatus)
908 connection_struct *conn = conn_new(sconn);
909 if (!conn) {
910 DEBUG(0,("make_connection_smb1: Couldn't find free connection.\n"));
911 *pstatus = NT_STATUS_INSUFFICIENT_RESOURCES;
912 return NULL;
914 *pstatus = make_connection_snum(sconn,
915 conn,
916 snum,
917 vuser,
918 pdev);
919 if (!NT_STATUS_IS_OK(*pstatus)) {
920 conn_free(conn);
921 return NULL;
923 return conn;
926 /****************************************************************************
927 Make a connection to a service from SMB2. External SMB2 interface.
928 We must set cnum before claiming connection.
929 ****************************************************************************/
931 connection_struct *make_connection_smb2(struct smbd_server_connection *sconn,
932 struct smbd_smb2_tcon *tcon,
933 user_struct *vuser,
934 const char *pdev,
935 NTSTATUS *pstatus)
937 connection_struct *conn = conn_new(sconn);
938 if (!conn) {
939 DEBUG(0,("make_connection_smb2: Couldn't find free connection.\n"));
940 *pstatus = NT_STATUS_INSUFFICIENT_RESOURCES;
941 return NULL;
943 conn->cnum = tcon->tid;
944 *pstatus = make_connection_snum(sconn,
945 conn,
946 tcon->snum,
947 vuser,
948 pdev);
949 if (!NT_STATUS_IS_OK(*pstatus)) {
950 conn_free(conn);
951 return NULL;
953 return conn;
956 /****************************************************************************
957 Make a connection to a service. External SMB1 interface.
959 * @param service
960 ****************************************************************************/
962 connection_struct *make_connection(struct smbd_server_connection *sconn,
963 const char *service_in,
964 const char *pdev, uint16 vuid,
965 NTSTATUS *status)
967 uid_t euid;
968 user_struct *vuser = NULL;
969 char *service = NULL;
970 fstring dev;
971 int snum = -1;
973 fstrcpy(dev, pdev);
975 /* This must ONLY BE CALLED AS ROOT. As it exits this function as
976 * root. */
977 if (!non_root_mode() && (euid = geteuid()) != 0) {
978 DEBUG(0,("make_connection: PANIC ERROR. Called as nonroot "
979 "(%u)\n", (unsigned int)euid ));
980 smb_panic("make_connection: PANIC ERROR. Called as nonroot\n");
983 if (conn_num_open(sconn) > 2047) {
984 *status = NT_STATUS_INSUFF_SERVER_RESOURCES;
985 return NULL;
988 vuser = get_valid_user_struct(sconn, vuid);
989 if (!vuser) {
990 DEBUG(1,("make_connection: refusing to connect with "
991 "no session setup\n"));
992 *status = NT_STATUS_ACCESS_DENIED;
993 return NULL;
996 /* Logic to try and connect to the correct [homes] share, preferably
997 without too many getpwnam() lookups. This is particulary nasty for
998 winbind usernames, where the share name isn't the same as unix
999 username.
1001 The snum of the homes share is stored on the vuser at session setup
1002 time.
1005 if (strequal(service_in,HOMES_NAME)) {
1006 if (vuser->homes_snum == -1) {
1007 DEBUG(2, ("[homes] share not available for "
1008 "this user because it was not found "
1009 "or created at session setup "
1010 "time\n"));
1011 *status = NT_STATUS_BAD_NETWORK_NAME;
1012 return NULL;
1014 DEBUG(5, ("making a connection to [homes] service "
1015 "created at session setup time\n"));
1016 return make_connection_smb1(sconn,
1017 vuser->homes_snum,
1018 vuser,
1019 dev, status);
1020 } else if ((vuser->homes_snum != -1)
1021 && strequal(service_in,
1022 lp_servicename(vuser->homes_snum))) {
1023 DEBUG(5, ("making a connection to 'homes' service [%s] "
1024 "created at session setup time\n", service_in));
1025 return make_connection_smb1(sconn,
1026 vuser->homes_snum,
1027 vuser,
1028 dev, status);
1031 service = talloc_strdup(talloc_tos(), service_in);
1032 if (!service) {
1033 *status = NT_STATUS_NO_MEMORY;
1034 return NULL;
1037 strlower_m(service);
1039 snum = find_service(talloc_tos(), service, &service);
1040 if (!service) {
1041 *status = NT_STATUS_NO_MEMORY;
1042 return NULL;
1045 if (snum < 0) {
1046 if (strequal(service,"IPC$") ||
1047 (lp_enable_asu_support() && strequal(service,"ADMIN$"))) {
1048 DEBUG(3,("refusing IPC connection to %s\n", service));
1049 *status = NT_STATUS_ACCESS_DENIED;
1050 return NULL;
1053 DEBUG(3,("%s (%s) couldn't find service %s\n",
1054 get_remote_machine_name(),
1055 tsocket_address_string(
1056 sconn->remote_address, talloc_tos()),
1057 service));
1058 *status = NT_STATUS_BAD_NETWORK_NAME;
1059 return NULL;
1062 /* Handle non-Dfs clients attempting connections to msdfs proxy */
1063 if (lp_host_msdfs() && (*lp_msdfs_proxy(snum) != '\0')) {
1064 DEBUG(3, ("refusing connection to dfs proxy share '%s' "
1065 "(pointing to %s)\n",
1066 service, lp_msdfs_proxy(snum)));
1067 *status = NT_STATUS_BAD_NETWORK_NAME;
1068 return NULL;
1071 DEBUG(5, ("making a connection to 'normal' service %s\n", service));
1073 return make_connection_smb1(sconn, snum, vuser,
1074 dev, status);
1077 /****************************************************************************
1078 Close a cnum.
1079 ****************************************************************************/
1081 void close_cnum(connection_struct *conn, uint16 vuid)
1083 file_close_conn(conn);
1085 if (!IS_IPC(conn)) {
1086 dptr_closecnum(conn);
1089 change_to_root_user();
1091 DEBUG(IS_IPC(conn)?3:1, ("%s (%s) closed connection to service %s\n",
1092 get_remote_machine_name(),
1093 tsocket_address_string(conn->sconn->remote_address,
1094 talloc_tos()),
1095 lp_servicename(SNUM(conn))));
1097 /* Call VFS disconnect hook */
1098 SMB_VFS_DISCONNECT(conn);
1100 yield_connection(conn, lp_servicename(SNUM(conn)));
1102 /* make sure we leave the directory available for unmount */
1103 vfs_ChDir(conn, "/");
1105 /* execute any "postexec = " line */
1106 if (*lp_postexec(SNUM(conn)) &&
1107 change_to_user(conn, vuid)) {
1108 char *cmd = talloc_sub_advanced(talloc_tos(),
1109 lp_servicename(SNUM(conn)),
1110 conn->session_info->unix_info->unix_name,
1111 conn->connectpath,
1112 conn->session_info->unix_token->gid,
1113 conn->session_info->unix_info->sanitized_username,
1114 conn->session_info->info->domain_name,
1115 lp_postexec(SNUM(conn)));
1116 smbrun(cmd,NULL);
1117 TALLOC_FREE(cmd);
1118 change_to_root_user();
1121 change_to_root_user();
1122 /* execute any "root postexec = " line */
1123 if (*lp_rootpostexec(SNUM(conn))) {
1124 char *cmd = talloc_sub_advanced(talloc_tos(),
1125 lp_servicename(SNUM(conn)),
1126 conn->session_info->unix_info->unix_name,
1127 conn->connectpath,
1128 conn->session_info->unix_token->gid,
1129 conn->session_info->unix_info->sanitized_username,
1130 conn->session_info->info->domain_name,
1131 lp_rootpostexec(SNUM(conn)));
1132 smbrun(cmd,NULL);
1133 TALLOC_FREE(cmd);
1136 conn_free(conn);