The big character set handling changeover!
[samba.git] / source / smbd / service.c
index ba381a40e8218e79726e11ea2f119065533a2e5a..836ef30f80c695c0827ce0b2dd6b0e384cd3d1bc 100644 (file)
@@ -1,5 +1,3 @@
-#define OLD_NTDOMAIN 1
-
 /* 
    Unix SMB/Netbios implementation.
    Version 1.9.
@@ -33,7 +31,7 @@ extern BOOL case_mangle;
 extern BOOL case_sensitive;
 extern BOOL use_mangled_map;
 extern fstring remote_machine;
-extern pstring sesssetup_user;
+extern userdom_struct current_user_info;
 extern fstring remote_machine;
 
 
@@ -78,10 +76,45 @@ BOOL become_service(connection_struct *conn,BOOL do_chdir)
        return(True);
 }
 
+/****************************************************************************
+ Add a home service. Returns the new service number or -1 if fail.
+****************************************************************************/
+
+int add_home_service(char *service, char *homedir)
+{
+       int iHomeService;
+       int iService;
+       fstring new_service;
+       char *usr_p = NULL;
+
+       if (!service || !homedir)
+               return -1;
+
+       if ((iHomeService = lp_servicenumber(HOMES_NAME)) < 0)
+               return -1;
+
+       /*
+        * If this is a winbindd provided username, remove
+        * the domain component before adding the service.
+        * Log a warning if the "path=" parameter does not
+        * include any macros.
+        */
+
+       fstrcpy(new_service, service);
+
+       if ((usr_p = strchr(service,*lp_winbind_separator())) != NULL)
+               fstrcpy(new_service, usr_p+1);
+
+       lp_add_home(new_service,iHomeService,homedir);
+       iService = lp_servicenumber(new_service);
+
+       return iService;
+}
 
 /****************************************************************************
-  find a service entry
+ Find a service entry. service is always in dos codepage.
 ****************************************************************************/
+
 int find_service(char *service)
 {
    int iService;
@@ -108,15 +141,7 @@ int find_service(char *service)
       DEBUG(3,("checking for home directory %s gave %s\n",service,
             phome_dir?phome_dir:"(NULL)"));
 
-      if (phome_dir)
-      {   
-        int iHomeService;
-        if ((iHomeService = lp_servicenumber(HOMES_NAME)) >= 0)
-        {
-          lp_add_home(service,iHomeService,phome_dir);
-          iService = lp_servicenumber(service);
-        }
-      }
+      iService = add_home_service(service,phome_dir);
    }
 
    /* If we still don't have a service, attempt to add it as a printer. */
@@ -204,7 +229,7 @@ connection_struct *make_connection(char *service,char *user,char *password, int
 
        snum = find_service(service);
        if (snum < 0) {
-               if (strequal(service,"IPC$")) {
+               if (strequal(service,"IPC$") || strequal(service,"ADMIN$")) {
                        DEBUG(3,("refusing IPC connection\n"));
                        *ecode = ERRnoipc;
                        return NULL;
@@ -220,7 +245,6 @@ connection_struct *make_connection(char *service,char *user,char *password, int
                if (*user && Get_Pwnam(user,True)) {
                        fstring dos_username;
                        fstrcpy(dos_username, user);
-                       unix_to_dos(dos_username, True);
                        return(make_connection(dos_username,user,password,
                                               pwlen,dev,vuid,ecode));
                }
@@ -230,17 +254,15 @@ connection_struct *make_connection(char *service,char *user,char *password, int
                                fstring dos_username;
                                fstrcpy(user,validated_username(vuid));
                                fstrcpy(dos_username, user);
-                               unix_to_dos(dos_username, True);
                                return(make_connection(dos_username,user,password,pwlen,dev,vuid,ecode));
                        }
                } else {
-                       /* Security = share. Try with sesssetup_user
+                       /* Security = share. Try with current_user_info.smb_name
                         * as the username.  */
-                       if(*sesssetup_user) {
+                       if(*current_user_info.smb_name) {
                                fstring dos_username;
-                               fstrcpy(user,sesssetup_user);
+                               fstrcpy(user,current_user_info.smb_name);
                                fstrcpy(dos_username, user);
-                               unix_to_dos(dos_username, True);
                                return(make_connection(dos_username,user,password,pwlen,dev,vuid,ecode));
                        }
                }
@@ -254,7 +276,7 @@ connection_struct *make_connection(char *service,char *user,char *password, int
        }
 
        /* you can only connect to the IPC$ service as an ipc device */
-       if (strequal(service,"IPC$"))
+       if (strequal(service,"IPC$") || strequal(service,"ADMIN$"))
                pstrcpy(dev,"IPC");
        
        if (*dev == '?' || !*dev) {
@@ -281,8 +303,11 @@ connection_struct *make_connection(char *service,char *user,char *password, int
        /* lowercase the user name */
        strlower(user);
 
-       /* add it as a possible user name */
-       add_session_user(service);
+       /* add it as a possible user name if we 
+          are in share mode security */
+       if (lp_security() == SEC_SHARE) {
+               add_session_user(service);
+       }
 
        /* shall we let them in? */
        if (!authorise_login(snum,user,password,pwlen,&guest,&force,vuid)) {
@@ -295,7 +320,6 @@ connection_struct *make_connection(char *service,char *user,char *password, int
        if (!conn) {
                DEBUG(0,("Couldn't find free connection.\n"));
                *ecode = ERRnoresource;
-               conn_free(conn);
                return NULL;
        }
 
@@ -311,6 +335,7 @@ connection_struct *make_connection(char *service,char *user,char *password, int
 
        conn->read_only = lp_readonly(snum);
 
+
        {
                pstring list;
                StrnCpy(list,lp_readlist(snum),sizeof(pstring)-1);
@@ -353,7 +378,7 @@ connection_struct *make_connection(char *service,char *user,char *password, int
        conn->service = snum;
        conn->used = True;
        conn->printer = (strncmp(dev,"LPT",3) == 0);
-       conn->ipc = (strncmp(dev,"IPC",3) == 0);
+       conn->ipc = ((strncmp(dev,"IPC",3) == 0) || strequal(dev,"ADMIN$"));
        conn->dirptr = NULL;
        conn->veto_list = NULL;
        conn->hide_list = NULL;
@@ -468,36 +493,38 @@ connection_struct *make_connection(char *service,char *user,char *password, int
                return NULL;
        }  
                
-       if (lp_status(SNUM(conn)))
-               claim_connection(conn,"",
-                                MAXSTATUS,False);
+       conn->nt_user_token = create_nt_token(conn->uid, conn->gid, 
+                                             conn->ngroups, conn->groups,
+                                             guest);
 
-       conn->nt_user_token = create_nt_token(conn->uid, conn->gid, conn->ngroups, conn->groups);
+       /*
+        * New code to check if there's a share security descripter
+        * added from NT server manager. This is done after the
+        * smb.conf checks are done as we need a uid and token. JRA.
+        */
 
+       {
+               BOOL can_write = share_access_check(conn, snum, vuid, FILE_WRITE_DATA);
+
+               if (!can_write) {
+                       if (!share_access_check(conn, snum, vuid, FILE_READ_DATA)) {
+                               /* No access, read or write. */
+                               *ecode = ERRaccess;
+                               DEBUG(0,( "make_connection: connection to %s denied due to security descriptor.\n",
+                                       service ));
+                               conn_free(conn);
+                               return NULL;
+                       } else {
+                               conn->read_only = True;
+                       }
+               }
+       }
        /* Initialise VFS function pointers */
 
-       if (*lp_vfsobj(SNUM(conn))) {
-
-#ifdef HAVE_LIBDL
-
-           /* Loadable object file */
-
-           if (!vfs_init_custom(conn)) {
-               DEBUG(0, ("vfs_init failed\n"));
-                   conn_free(conn);
-                       return NULL;
-           }
-#else
-           DEBUG(0, ("No libdl present - cannot use VFS objects\n"));
-           conn_free(conn);
-           return NULL;
-#endif
-
-       } else {
-
-           /* Normal share - initialise with disk access functions */
-
-           vfs_init_default(conn);
+       if (!vfs_init(conn)) {
+               DEBUG(0, ("vfs_init failed for service %s\n", lp_servicename(SNUM(conn))));
+               conn_free(conn);
+               return NULL;
        }
 
        /* execute any "root preexec = " line */
@@ -506,7 +533,7 @@ connection_struct *make_connection(char *service,char *user,char *password, int
                pstrcpy(cmd,lp_rootpreexec(SNUM(conn)));
                standard_sub_conn(conn,cmd);
                DEBUG(5,("cmd=%s\n",cmd));
-               ret = smbrun(cmd,NULL,False);
+               ret = smbrun(cmd,NULL);
                if (ret != 0 && lp_rootpreexec_close(SNUM(conn))) {
                        DEBUG(1,("preexec gave %d - failing connection\n", ret));
                        conn_free(conn);
@@ -520,23 +547,19 @@ connection_struct *make_connection(char *service,char *user,char *password, int
                yield_connection(conn,
                                 lp_servicename(SNUM(conn)),
                                 lp_max_connections(SNUM(conn)));
-               if (lp_status(SNUM(conn))) {
-                       yield_connection(conn,"",MAXSTATUS);
-               }
                conn_free(conn);
                *ecode = ERRbadpw;
                return NULL;
        }
        
        if (vfs_ChDir(conn,conn->connectpath) != 0) {
-               DEBUG(0,("Can't change directory to %s (%s)\n",
+               DEBUG(0,("%s (%s) Can't change directory to %s (%s)\n",
+                        remote_machine, conn->client_address,
                         conn->connectpath,strerror(errno)));
                unbecome_user();
                yield_connection(conn,
                                 lp_servicename(SNUM(conn)),
                                 lp_max_connections(SNUM(conn)));
-               if (lp_status(SNUM(conn))) 
-                       yield_connection(conn,"",MAXSTATUS);
                conn_free(conn);
                *ecode = ERRnosuchshare;
                return NULL;
@@ -562,7 +585,7 @@ connection_struct *make_connection(char *service,char *user,char *password, int
                pstring cmd;
                pstrcpy(cmd,lp_preexec(SNUM(conn)));
                standard_sub_conn(conn,cmd);
-               ret = smbrun(cmd,NULL,False);
+               ret = smbrun(cmd,NULL);
                if (ret != 0 && lp_preexec_close(SNUM(conn))) {
                        DEBUG(1,("preexec gave %d - failing connection\n", ret));
                        conn_free(conn);
@@ -630,9 +653,6 @@ void close_cnum(connection_struct *conn, uint16 vuid)
                         lp_servicename(SNUM(conn)),
                         lp_max_connections(SNUM(conn)));
 
-       if (lp_status(SNUM(conn)))
-               yield_connection(conn,"",MAXSTATUS);
-
        file_close_conn(conn);
        dptr_closecnum(conn);
 
@@ -642,7 +662,7 @@ void close_cnum(connection_struct *conn, uint16 vuid)
                pstring cmd;
                pstrcpy(cmd,lp_postexec(SNUM(conn)));
                standard_sub_conn(conn,cmd);
-               smbrun(cmd,NULL,False);
+               smbrun(cmd,NULL);
                unbecome_user();
        }
 
@@ -652,9 +672,9 @@ void close_cnum(connection_struct *conn, uint16 vuid)
                pstring cmd;
                pstrcpy(cmd,lp_rootpostexec(SNUM(conn)));
                standard_sub_conn(conn,cmd);
-               smbrun(cmd,NULL,False);
+               smbrun(cmd,NULL);
        }
        conn_free(conn);
 }
 
-#undef OLD_NTDOMAIN
+