The FSF has moved around a lot. This fixes their Mass Ave address.
[metze/old/v3-2-winbind-ndr.git] / source / rpc_server / srv_dfs_nt.c
index 4857a839e1fcd5cbfb04f3a0ae9cda197e1ca9f9..468a3c4996fc676d013463a4905117de54d91510 100644 (file)
@@ -7,7 +7,7 @@
  *  
  *  This program is free software; you can redistribute it and/or modify
  *  it under the terms of the GNU General Public License as published by
- *  the Free Software Foundation; either version 2 of the License, or
+ *  the Free Software Foundation; either version 3 of the License, or
  *  (at your option) any later version.
  *  
  *  This program is distributed in the hope that it will be useful,
@@ -16,8 +16,7 @@
  *  GNU General Public License for more details.
  *  
  *  You should have received a copy of the GNU General Public License
- *  along with this program; if not, write to the Free Software
- *  Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
+ *  along with this program; if not, see <http://www.gnu.org/licenses/>.
  */
 
 /* This is the implementation of the dfs pipe. */
 /* This function does not return a WERROR or NTSTATUS code but rather 1 if
    dfs exists, or 0 otherwise. */
 
-void _dfs_GetManagerVersion(pipes_struct *p, uint32 *exists)
+void _dfs_GetManagerVersion(pipes_struct *p, struct dfs_GetManagerVersion *r)
 {
-       if(lp_host_msdfs()) 
-               *exists = 1;
-       else
-               *exists = 0;
+       if (lp_host_msdfs()) {
+               *r->out.version = DFS_MANAGER_VERSION_NT4;
+       } else {
+               *r->out.version = 0;
+       }
 }
 
-WERROR _dfs_Add(pipes_struct *p, const char *path, const char *server, const char *share, const char *comment, uint32_t flags)
+WERROR _dfs_Add(pipes_struct *p, struct dfs_Add *r)
 {
        struct junction_map jn;
        struct referral* old_referral_list = NULL;
+       BOOL self_ref = False;
+       int consumedcnt = 0;
        BOOL exists = False;
 
        pstring altpath;
@@ -52,14 +54,14 @@ WERROR _dfs_Add(pipes_struct *p, const char *path, const char *server, const cha
        }
 
        DEBUG(5,("init_reply_dfs_add: Request to add %s -> %s\\%s.\n",
-               path, server, share));
+               r->in.path, r->in.server, r->in.share));
 
-       pstrcpy(altpath, server);
+       pstrcpy(altpath, r->in.server);
        pstrcat(altpath, "\\");
-       pstrcat(altpath, share);
+       pstrcat(altpath, r->in.share);
 
        /* The following call can change the cwd. */
-       if(get_referred_path(p->mem_ctx, path, &jn, NULL, NULL)) {
+       if(NT_STATUS_IS_OK(get_referred_path(p->mem_ctx, r->in.path, &jn, &consumedcnt, &self_ref))) {
                exists = True;
                jn.referral_count += 1;
                old_referral_list = jn.referral_list;
@@ -93,9 +95,11 @@ WERROR _dfs_Add(pipes_struct *p, const char *path, const char *server, const cha
        return WERR_OK;
 }
 
-WERROR _dfs_Remove(pipes_struct *p, const char *path, const char *server, const char *share)
+WERROR _dfs_Remove(pipes_struct *p, struct dfs_Remove *r)
 {
        struct junction_map jn;
+       BOOL self_ref = False;
+       int consumedcnt = 0;
        BOOL found = False;
 
        pstring altpath;
@@ -105,22 +109,22 @@ WERROR _dfs_Remove(pipes_struct *p, const char *path, const char *server, const
                return WERR_ACCESS_DENIED;
        }
 
-       if(server && share) {
-               pstrcpy(altpath, server);
+       if (r->in.servername && r->in.sharename) {
+               pstrcpy(altpath, r->in.servername);
                pstrcat(altpath, "\\");
-               pstrcat(altpath, share);
+               pstrcat(altpath, r->in.sharename);
                strlower_m(altpath);
        }
 
        DEBUG(5,("init_reply_dfs_remove: Request to remove %s -> %s\\%s.\n",
-               path, server, share));
+               r->in.dfs_entry_path, r->in.servername, r->in.sharename));
 
-       if(!get_referred_path(p->mem_ctx, path, &jn, NULL, NULL)) {
+       if(!NT_STATUS_IS_OK(get_referred_path(p->mem_ctx, r->in.dfs_entry_path, &jn, &consumedcnt, &self_ref))) {
                return WERR_DFS_NO_SUCH_VOL;
        }
 
        /* if no server-share pair given, remove the msdfs link completely */
-       if(!server && !share) {
+       if(!r->in.servername && !r->in.sharename) {
                if(!remove_msdfs_link(&jn)) {
                        vfs_ChDir(p->conn,p->conn->connectpath);
                        return WERR_DFS_NO_SUCH_VOL;
@@ -207,11 +211,14 @@ static BOOL init_reply_dfs_info_3(TALLOC_CTX *mem_ctx, struct junction_map* j, s
        dfs3->num_stores = j->referral_count;
     
        /* also enumerate the stores */
-       dfs3->stores = TALLOC_ARRAY(mem_ctx, struct dfs_StorageInfo, j->referral_count);
-       if (!dfs3->stores)
-               return False;
-
-       memset(dfs3->stores, '\0', j->referral_count * sizeof(struct dfs_StorageInfo));
+       if (j->referral_count) {
+               dfs3->stores = TALLOC_ARRAY(mem_ctx, struct dfs_StorageInfo, j->referral_count);
+               if (!dfs3->stores)
+                       return False;
+               memset(dfs3->stores, '\0', j->referral_count * sizeof(struct dfs_StorageInfo));
+       } else {
+               dfs3->stores = NULL;
+       }
 
        for(ii=0;ii<j->referral_count;ii++) {
                char* p; 
@@ -242,7 +249,7 @@ static BOOL init_reply_dfs_info_100(TALLOC_CTX *mem_ctx, struct junction_map* j,
 }
 
 
-WERROR _dfs_Enum(pipes_struct *p, uint32_t level, uint32_t bufsize, struct dfs_EnumStruct *info, uint32_t *unknown, uint32_t *total)
+WERROR _dfs_Enum(pipes_struct *p, struct dfs_Enum *r)
 {
        struct junction_map jn[MAX_MSDFS_JUNCTIONS];
        int num_jn = 0;
@@ -251,44 +258,56 @@ WERROR _dfs_Enum(pipes_struct *p, uint32_t level, uint32_t bufsize, struct dfs_E
        num_jn = enum_msdfs_links(p->mem_ctx, jn, ARRAY_SIZE(jn));
        vfs_ChDir(p->conn,p->conn->connectpath);
     
-       DEBUG(5,("_dfs_Enum: %d junctions found in Dfs, doing level %d\n", num_jn, level));
+       DEBUG(5,("_dfs_Enum: %d junctions found in Dfs, doing level %d\n", num_jn, r->in.level));
 
-       *total = num_jn;
+       *r->out.total = num_jn;
 
        /* Create the return array */
-       switch (level) {
+       switch (r->in.level) {
        case 1:
-               if ((info->e.info1->s = TALLOC_ARRAY(p->mem_ctx, struct dfs_Info1, num_jn)) == NULL) {
-                       return WERR_NOMEM;
+               if (num_jn) {
+                       if ((r->out.info->e.info1->s = TALLOC_ARRAY(p->mem_ctx, struct dfs_Info1, num_jn)) == NULL) {
+                               return WERR_NOMEM;
+                       }
+               } else {
+                       r->out.info->e.info1->s = NULL;
                }
-               info->e.info1->count = num_jn;
+               r->out.info->e.info1->count = num_jn;
                break;
        case 2:
-               if ((info->e.info2->s = TALLOC_ARRAY(p->mem_ctx, struct dfs_Info2, num_jn)) == NULL) {
-                       return WERR_NOMEM;
+               if (num_jn) {
+                       if ((r->out.info->e.info2->s = TALLOC_ARRAY(p->mem_ctx, struct dfs_Info2, num_jn)) == NULL) {
+                               return WERR_NOMEM;
+                       }
+               } else {
+                       r->out.info->e.info2->s = NULL;
                }
-               info->e.info2->count = num_jn;
+               r->out.info->e.info2->count = num_jn;
                break;
        case 3:
-               if ((info->e.info3->s = TALLOC_ARRAY(p->mem_ctx, struct dfs_Info3, num_jn)) == NULL) {
-                       return WERR_NOMEM;
+               if (num_jn) {
+                       if ((r->out.info->e.info3->s = TALLOC_ARRAY(p->mem_ctx, struct dfs_Info3, num_jn)) == NULL) {
+                               return WERR_NOMEM;
+                       }
+               } else {
+                       r->out.info->e.info3->s = NULL;
                }
-               info->e.info3->count = num_jn;
+               r->out.info->e.info3->count = num_jn;
                break;
        default:
                return WERR_INVALID_PARAM;
        }
 
        for (i = 0; i < num_jn; i++) {
-               switch (level) {
+               switch (r->in.level) {
                case 1: 
-                       init_reply_dfs_info_1(p->mem_ctx, &jn[i], &info->e.info1->s[i]);
+                       init_reply_dfs_info_1(p->mem_ctx, &jn[i], &r->out.info->e.info1->s[i]);
                        break;
                case 2:
-                       init_reply_dfs_info_2(p->mem_ctx, &jn[i], &info->e.info2->s[i]);
+                       init_reply_dfs_info_2(p->mem_ctx, &jn[i], &r->out.info->e.info2->s[i]);
                        break;
                case 3:
-                       init_reply_dfs_info_3(p->mem_ctx, &jn[i], &info->e.info3->s[i]);
+                       init_reply_dfs_info_3(p->mem_ctx, &jn[i], &r->out.info->e.info3->s[i]);
                        break;
                default:
                        return WERR_INVALID_PARAM;
@@ -297,31 +316,32 @@ WERROR _dfs_Enum(pipes_struct *p, uint32_t level, uint32_t bufsize, struct dfs_E
   
        return WERR_OK;
 }
-      
-WERROR _dfs_GetInfo(pipes_struct *p, const char *path, const char *server, const char *share, uint32_t level, union dfs_Info *info)
+
+WERROR _dfs_GetInfo(pipes_struct *p, struct dfs_GetInfo *r)
 {
        int consumedcnt = sizeof(pstring);
        struct junction_map jn;
+       BOOL self_ref = False;
        BOOL ret;
 
-       if(!create_junction(path, &jn))
+       if(!create_junction(r->in.dfs_entry_path, &jn))
                return WERR_DFS_NO_SUCH_SERVER;
   
        /* The following call can change the cwd. */
-       if(!get_referred_path(p->mem_ctx, path, &jn, &consumedcnt, NULL) || consumedcnt < strlen(path)) {
+       if(!NT_STATUS_IS_OK(get_referred_path(p->mem_ctx, r->in.dfs_entry_path, &jn, &consumedcnt, &self_ref)) || consumedcnt < strlen(r->in.dfs_entry_path)) {
                vfs_ChDir(p->conn,p->conn->connectpath);
                return WERR_DFS_NO_SUCH_VOL;
        }
 
        vfs_ChDir(p->conn,p->conn->connectpath);
 
-       switch (level) {
-               case 1: ret = init_reply_dfs_info_1(p->mem_ctx, &jn, info->info1); break;
-               case 2: ret = init_reply_dfs_info_2(p->mem_ctx, &jn, info->info2); break;
-               case 3: ret = init_reply_dfs_info_3(p->mem_ctx, &jn, info->info3); break;
-               case 100: ret = init_reply_dfs_info_100(p->mem_ctx, &jn, info->info100); break;
+       switch (r->in.level) {
+               case 1: ret = init_reply_dfs_info_1(p->mem_ctx, &jn, r->out.info->info1); break;
+               case 2: ret = init_reply_dfs_info_2(p->mem_ctx, &jn, r->out.info->info2); break;
+               case 3: ret = init_reply_dfs_info_3(p->mem_ctx, &jn, r->out.info->info3); break;
+               case 100: ret = init_reply_dfs_info_100(p->mem_ctx, &jn, r->out.info->info100); break;
                default:
-                       info->info1 = NULL;
+                       r->out.info->info1 = NULL;
                        return WERR_INVALID_PARAM;
        }
 
@@ -331,129 +351,128 @@ WERROR _dfs_GetInfo(pipes_struct *p, const char *path, const char *server, const
        return WERR_OK;
 }
 
-WERROR _dfs_SetInfo(pipes_struct *p)
+WERROR _dfs_SetInfo(pipes_struct *p, struct dfs_SetInfo *r)
 {
        /* FIXME: Implement your code here */
        p->rng_fault_state = True;
        return WERR_NOT_SUPPORTED;
 }
 
-WERROR _dfs_Rename(pipes_struct *p)
+WERROR _dfs_Rename(pipes_struct *p, struct dfs_Rename *r)
 {
        /* FIXME: Implement your code here */
        p->rng_fault_state = True;
        return WERR_NOT_SUPPORTED;
 }
 
-WERROR _dfs_Move(pipes_struct *p)
+WERROR _dfs_Move(pipes_struct *p, struct dfs_Move *r)
 {
        /* FIXME: Implement your code here */
        p->rng_fault_state = True;
        return WERR_NOT_SUPPORTED;
 }
 
-WERROR _dfs_ManagerGetConfigInfo(pipes_struct *p)
+WERROR _dfs_ManagerGetConfigInfo(pipes_struct *p, struct dfs_ManagerGetConfigInfo *r)
 {
        /* FIXME: Implement your code here */
        p->rng_fault_state = True;
        return WERR_NOT_SUPPORTED;
 }
 
-WERROR _dfs_ManagerSendSiteInfo(pipes_struct *p)
+WERROR _dfs_ManagerSendSiteInfo(pipes_struct *p, struct dfs_ManagerSendSiteInfo *r)
 {
        /* FIXME: Implement your code here */
        p->rng_fault_state = True;
        return WERR_NOT_SUPPORTED;
 }
 
-WERROR _dfs_AddFtRoot(pipes_struct *p)
+WERROR _dfs_AddFtRoot(pipes_struct *p, struct dfs_AddFtRoot *r)
 {
        /* FIXME: Implement your code here */
        p->rng_fault_state = True;
        return WERR_NOT_SUPPORTED;
 }
 
-WERROR _dfs_RemoveFtRoot(pipes_struct *p)
+WERROR _dfs_RemoveFtRoot(pipes_struct *p, struct dfs_RemoveFtRoot *r)
 {
        /* FIXME: Implement your code here */
        p->rng_fault_state = True;
        return WERR_NOT_SUPPORTED;
 }
 
-WERROR _dfs_AddStdRoot(pipes_struct *p)
+WERROR _dfs_AddStdRoot(pipes_struct *p, struct dfs_AddStdRoot *r)
 {
        /* FIXME: Implement your code here */
        p->rng_fault_state = True;
        return WERR_NOT_SUPPORTED;
 }
 
-WERROR _dfs_RemoveStdRoot(pipes_struct *p)
+WERROR _dfs_RemoveStdRoot(pipes_struct *p, struct dfs_RemoveStdRoot *r)
 {
        /* FIXME: Implement your code here */
        p->rng_fault_state = True;
        return WERR_NOT_SUPPORTED;
 }
 
-WERROR _dfs_ManagerInitialize(pipes_struct *p)
+WERROR _dfs_ManagerInitialize(pipes_struct *p, struct dfs_ManagerInitialize *r)
 {
        /* FIXME: Implement your code here */
        p->rng_fault_state = True;
        return WERR_NOT_SUPPORTED;
 }
 
-WERROR _dfs_AddStdRootForced(pipes_struct *p)
+WERROR _dfs_AddStdRootForced(pipes_struct *p, struct dfs_AddStdRootForced *r)
 {
        /* FIXME: Implement your code here */
        p->rng_fault_state = True;
        return WERR_NOT_SUPPORTED;
 }
 
-WERROR _dfs_GetDcAddress(pipes_struct *p)
+WERROR _dfs_GetDcAddress(pipes_struct *p, struct dfs_GetDcAddress *r)
 {
        /* FIXME: Implement your code here */
        p->rng_fault_state = True;
        return WERR_NOT_SUPPORTED;
 }
 
-WERROR _dfs_SetDcAddress(pipes_struct *p)
+WERROR _dfs_SetDcAddress(pipes_struct *p, struct dfs_SetDcAddress *r)
 {
        /* FIXME: Implement your code here */
        p->rng_fault_state = True;
        return WERR_NOT_SUPPORTED;
 }
 
-WERROR _dfs_FlushFtTable(pipes_struct *p)
+WERROR _dfs_FlushFtTable(pipes_struct *p, struct dfs_FlushFtTable *r)
 {
        /* FIXME: Implement your code here */
        p->rng_fault_state = True;
        return WERR_NOT_SUPPORTED;
 }
 
-WERROR _dfs_Add2(pipes_struct *p)
+WERROR _dfs_Add2(pipes_struct *p, struct dfs_Add2 *r)
 {
        /* FIXME: Implement your code here */
        p->rng_fault_state = True;
        return WERR_NOT_SUPPORTED;
 }
 
-WERROR _dfs_Remove2(pipes_struct *p)
+WERROR _dfs_Remove2(pipes_struct *p, struct dfs_Remove2 *r)
 {
        /* FIXME: Implement your code here */
        p->rng_fault_state = True;
        return WERR_NOT_SUPPORTED;
 }
 
-WERROR _dfs_EnumEx(pipes_struct *p, const char *name, uint32_t level, uint32_t bufsize, struct dfs_EnumStruct *info, uint32_t *total)
+WERROR _dfs_EnumEx(pipes_struct *p, struct dfs_EnumEx *r)
 {
        /* FIXME: Implement your code here */
        p->rng_fault_state = True;
        return WERR_NOT_SUPPORTED;
 }
 
-WERROR _dfs_SetInfo2(pipes_struct *p)
+WERROR _dfs_SetInfo2(pipes_struct *p, struct dfs_SetInfo2 *r)
 {
        /* FIXME: Implement your code here */
        p->rng_fault_state = True;
        return WERR_NOT_SUPPORTED;
 }
-