]> arthur.barton.de Git - netatalk.git/blobdiff - etc/afpd/afp_config.c
Merge master
[netatalk.git] / etc / afpd / afp_config.c
index 7f5fd1f1fc9e32d10f3adc16c85da1cfdfdae4b6..8c997ebe94f7999e0e51b248a304e95fd38997da 100644 (file)
@@ -25,9 +25,6 @@
 #include <atalk/logger.h>
 #include <atalk/util.h>
 #include <atalk/dsi.h>
-#include <atalk/atp.h>
-#include <atalk/asp.h>
-#include <atalk/nbp.h>
 #include <atalk/afp.h>
 #include <atalk/compat.h>
 #include <atalk/server_child.h>
@@ -64,15 +61,6 @@ void configfree(AFPConfig *configs, const AFPConfig *config)
         }
 
         switch (p->obj.proto) {
-#ifndef NO_DDP
-        case AFPPROTO_ASP:
-            free(p->obj.Obj);
-            free(p->obj.Type);
-            free(p->obj.Zone);
-            atp_close(((ASP) p->obj.handle)->asp_atp);
-            free(p->obj.handle);
-            break;
-#endif /* no afp/asp */
         case AFPPROTO_DSI:
             close(p->fd);
             free(p->obj.handle);
@@ -98,9 +86,6 @@ static char * srvloc_encode(const struct afp_options *options, const char *name)
        char *conv_name;
        unsigned char *p;
        unsigned int i = 0;
-#ifndef NO_DDP
-       char *Obj, *Type = "", *Zone = "";
-#endif
 
        /* Convert name to maccharset */
         if ((size_t)-1 ==(convert_string_allocate( options->unixcharset, options->maccharset,
@@ -129,15 +114,6 @@ static char * srvloc_encode(const struct afp_options *options, const char *name)
        }
        buf[i] = '\0';
 
-#ifndef NO_DDP
-       /* Add ZONE,  */
-        if (nbp_name(options->server, &Obj, &Type, &Zone )) {
-               LOG(log_error, logtype_afpd, "srvloc_encode: can't parse %s", options->server );
-       }
-       else {
-               snprintf( buf+i, sizeof(buf)-i-1 ,"&ZONE=%s", Zone);
-       }
-#endif
        free (conv_name);
 
        return buf;
@@ -182,38 +158,6 @@ srvloc_dereg_err:
 #endif /* USE_SRVLOC */
 }
 
-#ifndef NO_DDP
-static void asp_cleanup(const AFPConfig *config)
-{
-    /* we need to stop tickle handler */
-    asp_stop_tickle();
-    nbp_unrgstr(config->obj.Obj, config->obj.Type, config->obj.Zone,
-                &config->obj.options.ddpaddr);
-}
-
-/* these two are almost identical. it should be possible to collapse them
- * into one with minimal junk. */
-static int asp_start(AFPConfig *config, AFPConfig *configs,
-                     server_child *server_children)
-{
-    ASP asp;
-
-    if (!(asp = asp_getsession(config->obj.handle, server_children,
-                               config->obj.options.tickleval))) {
-        LOG(log_error, logtype_afpd, "main: asp_getsession: %s", strerror(errno) );
-        exit( EXITERR_CLNT );
-    }
-
-    if (asp->child) {
-        configfree(configs, config); /* free a bunch of stuff */
-        afp_over_asp(&config->obj);
-        exit (0);
-    }
-
-    return 0;
-}
-#endif /* no afp/asp */
-
 static afp_child_t *dsi_start(AFPConfig *config, AFPConfig *configs,
                               server_child *server_children)
 {
@@ -240,102 +184,6 @@ static afp_child_t *dsi_start(AFPConfig *config, AFPConfig *configs,
     return child;
 }
 
-#ifndef NO_DDP
-static AFPConfig *ASPConfigInit(const struct afp_options *options,
-                                unsigned char *refcount)
-{
-    AFPConfig *config;
-    ATP atp;
-    ASP asp;
-    char *Obj, *Type = "AFPServer", *Zone = "*";
-    char *convname = NULL;
-
-    if ((config = (AFPConfig *) calloc(1, sizeof(AFPConfig))) == NULL)
-        return NULL;
-
-    if ((atp = atp_open(ATADDR_ANYPORT, &options->ddpaddr)) == NULL)  {
-        LOG(log_error, logtype_afpd, "main: atp_open: %s", strerror(errno) );
-        free(config);
-        return NULL;
-    }
-
-    if ((asp = asp_init( atp )) == NULL) {
-        LOG(log_error, logtype_afpd, "main: asp_init: %s", strerror(errno) );
-        atp_close(atp);
-        free(config);
-        return NULL;
-    }
-
-    /* register asp server */
-    Obj = (char *) options->hostname;
-    if (options->server && (size_t)-1 ==(convert_string_allocate( options->unixcharset, options->maccharset,
-                         options->server, strlen(options->server), &convname)) ) {
-        if ((convname = strdup(options->server)) == NULL ) {
-            LOG(log_error, logtype_afpd, "malloc: %s", strerror(errno) );
-            goto serv_free_return;
-        }
-    }
-
-    if (nbp_name(convname, &Obj, &Type, &Zone )) {
-        LOG(log_error, logtype_afpd, "main: can't parse %s", options->server );
-        goto serv_free_return;
-    }
-    if (convname)
-        free (convname);
-
-    /* dup Obj, Type and Zone as they get assigned to a single internal
-     * buffer by nbp_name */
-    if ((config->obj.Obj  = strdup(Obj)) == NULL)
-        goto serv_free_return;
-
-    if ((config->obj.Type = strdup(Type)) == NULL) {
-        free(config->obj.Obj);
-        goto serv_free_return;
-    }
-
-    if ((config->obj.Zone = strdup(Zone)) == NULL) {
-        free(config->obj.Obj);
-        free(config->obj.Type);
-        goto serv_free_return;
-    }
-
-    /* make sure we're not registered */
-    nbp_unrgstr(Obj, Type, Zone, &options->ddpaddr);
-    if (nbp_rgstr( atp_sockaddr( atp ), Obj, Type, Zone ) < 0 ) {
-        LOG(log_error, logtype_afpd, "Can't register %s:%s@%s", Obj, Type, Zone );
-        free(config->obj.Obj);
-        free(config->obj.Type);
-        free(config->obj.Zone);
-        goto serv_free_return;
-    }
-
-    LOG(log_info, logtype_afpd, "%s:%s@%s started on %u.%u:%u (%s)", Obj, Type, Zone,
-        ntohs( atp_sockaddr( atp )->sat_addr.s_net ),
-        atp_sockaddr( atp )->sat_addr.s_node,
-        atp_sockaddr( atp )->sat_port, VERSION );
-
-    config->fd = atp_fileno(atp);
-    config->obj.handle = asp;
-    config->obj.config = config;
-    config->obj.proto = AFPPROTO_ASP;
-
-    memcpy(&config->obj.options, options, sizeof(struct afp_options));
-    config->optcount = refcount;
-    (*refcount)++;
-
-    config->server_start = asp_start;
-    config->server_cleanup = asp_cleanup;
-
-    return config;
-
-serv_free_return:
-                    asp_close(asp);
-    free(config);
-    return NULL;
-}
-#endif /* no afp/asp */
-
-
 static AFPConfig *DSIConfigInit(const struct afp_options *options,
                                 unsigned char *refcount,
                                 const dsi_proto protocol)
@@ -473,7 +321,7 @@ srvloc_reg_err:
 static AFPConfig *AFPConfigInit(struct afp_options *options,
                                 const struct afp_options *defoptions)
 {
-    AFPConfig *config = NULL, *next = NULL;
+    AFPConfig *next = NULL;
     unsigned char *refcount;
 
     if ((refcount = (unsigned char *)
@@ -482,14 +330,6 @@ static AFPConfig *AFPConfigInit(struct afp_options *options,
         return NULL;
     }
 
-#ifndef NO_DDP
-    /* handle asp transports */
-    if ((options->transports & AFPTRANS_DDP) &&
-            (config = ASPConfigInit(options, refcount)))
-        config->defoptions = defoptions;
-#endif /* NO_DDP */
-
-
     /* set signature */
     set_signature(options);
 
@@ -502,10 +342,11 @@ static AFPConfig *AFPConfigInit(struct afp_options *options,
      *     (next = DSIConfigInit(options, refcount, i)))
      *     next->defoptions = defoptions;
      */
-    if ((options->transports & AFPTRANS_TCP) &&
-            (((options->flags & OPTION_PROXY) == 0) ||
-             ((options->flags & OPTION_PROXY) && config))
-            && (next = DSIConfigInit(options, refcount, DSI_TCPIP)))
+    if ( (options->transports & AFPTRANS_TCP)
+         &&
+         ((options->flags & OPTION_PROXY) == 0)
+         &&
+         (next = DSIConfigInit(options, refcount, DSI_TCPIP)))
         next->defoptions = defoptions;
 
     /* load in all the authentication modules. we can load the same
@@ -517,13 +358,7 @@ static AFPConfig *AFPConfigInit(struct afp_options *options,
 
     /* this should be able to accept multiple dsi transports. i think
      * the only thing that gets affected is the net addresses. */
-    status_init(config, next, options);
-
-    /* attach dsi config to tail of asp config */
-    if (config) {
-        config->next = next;
-        return config;
-    }
+    status_init(next, options);
 
     return next;
 }