root/source4/rpc_server/dcesrv_mgmt.c

/* [<][>][^][v][top][bottom][index][help] */

DEFINITIONS

This source file includes following definitions.
  1. dcesrv_mgmt_inq_if_ids
  2. dcesrv_mgmt_inq_stats
  3. dcesrv_mgmt_is_server_listening
  4. dcesrv_mgmt_stop_server_listening
  5. dcesrv_mgmt_inq_princ_name

   1 /* 
   2    Unix SMB/CIFS implementation.
   3 
   4    endpoint server for the mgmt pipe
   5 
   6    Copyright (C) Jelmer Vernooij 2006
   7    
   8    This program is free software; you can redistribute it and/or modify
   9    it under the terms of the GNU General Public License as published by
  10    the Free Software Foundation; either version 3 of the License, or
  11    (at your option) any later version.
  12    
  13    This program is distributed in the hope that it will be useful,
  14    but WITHOUT ANY WARRANTY; without even the implied warranty of
  15    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  16    GNU General Public License for more details.
  17    
  18    You should have received a copy of the GNU General Public License
  19    along with this program.  If not, see <http://www.gnu.org/licenses/>.
  20 */
  21 
  22 #include "includes.h"
  23 #include "rpc_server/dcerpc_server.h"
  24 #include "librpc/gen_ndr/ndr_mgmt.h"
  25 #include "rpc_server/common/common.h"
  26 
  27 /* 
  28   mgmt_inq_if_ids 
  29 */
  30 static WERROR dcesrv_mgmt_inq_if_ids(struct dcesrv_call_state *dce_call, TALLOC_CTX *mem_ctx,
     /* [<][>][^][v][top][bottom][index][help] */
  31                        struct mgmt_inq_if_ids *r)
  32 {
  33         const struct dcesrv_endpoint *ep = dce_call->conn->endpoint;
  34         struct dcesrv_if_list *l;
  35         struct rpc_if_id_vector_t *vector;
  36 
  37         vector = *r->out.if_id_vector = talloc(mem_ctx, struct rpc_if_id_vector_t);
  38         vector->count = 0;
  39         vector->if_id = NULL;
  40         for (l = ep->interface_list; l; l = l->next) {
  41                 vector->count++;
  42                 vector->if_id = talloc_realloc(mem_ctx, vector->if_id, struct ndr_syntax_id_p, vector->count);
  43                 vector->if_id[vector->count-1].id = &l->iface.syntax_id;
  44         }
  45         return WERR_OK;
  46 }
  47 
  48 
  49 /* 
  50   mgmt_inq_stats 
  51 */
  52 static WERROR dcesrv_mgmt_inq_stats(struct dcesrv_call_state *dce_call, TALLOC_CTX *mem_ctx,
     /* [<][>][^][v][top][bottom][index][help] */
  53                        struct mgmt_inq_stats *r)
  54 {
  55         if (r->in.max_count != MGMT_STATS_ARRAY_MAX_SIZE)
  56                 return WERR_NOT_SUPPORTED;
  57 
  58         r->out.statistics->count = r->in.max_count;
  59         r->out.statistics->statistics = talloc_array(mem_ctx, uint32_t, r->in.max_count);
  60         /* FIXME */
  61         r->out.statistics->statistics[MGMT_STATS_CALLS_IN] = 0;
  62         r->out.statistics->statistics[MGMT_STATS_CALLS_OUT] = 0;
  63         r->out.statistics->statistics[MGMT_STATS_PKTS_IN] = 0;
  64         r->out.statistics->statistics[MGMT_STATS_PKTS_OUT] = 0;
  65 
  66         return WERR_OK;
  67 }
  68 
  69 
  70 /* 
  71   mgmt_is_server_listening 
  72 */
  73 static uint32_t dcesrv_mgmt_is_server_listening(struct dcesrv_call_state *dce_call, TALLOC_CTX *mem_ctx,
     /* [<][>][^][v][top][bottom][index][help] */
  74                        struct mgmt_is_server_listening *r)
  75 {
  76         *r->out.status = 0;
  77         return 1;
  78 }
  79 
  80 
  81 /* 
  82   mgmt_stop_server_listening 
  83 */
  84 static WERROR dcesrv_mgmt_stop_server_listening(struct dcesrv_call_state *dce_call, TALLOC_CTX *mem_ctx,
     /* [<][>][^][v][top][bottom][index][help] */
  85                        struct mgmt_stop_server_listening *r)
  86 {
  87         return WERR_ACCESS_DENIED;
  88 }
  89 
  90 
  91 /* 
  92   mgmt_inq_princ_name 
  93 */
  94 static WERROR dcesrv_mgmt_inq_princ_name(struct dcesrv_call_state *dce_call, TALLOC_CTX *mem_ctx,
     /* [<][>][^][v][top][bottom][index][help] */
  95                        struct mgmt_inq_princ_name *r)
  96 {
  97         DCESRV_FAULT(DCERPC_FAULT_OP_RNG_ERROR);
  98 }
  99 
 100 
 101 /* include the generated boilerplate */
 102 #include "librpc/gen_ndr/ndr_mgmt_s.c"

/* [<][>][^][v][top][bottom][index][help] */