]> arthur.barton.de Git - netatalk.git/blobdiff - etc/uams/uams_guest.c
Try using Tracker 0.15 from OpenCSW
[netatalk.git] / etc / uams / uams_guest.c
index 35ab3fd084d27e1649e90c549f65657f1d069e7c..82ee43ef5d552dc3fe7fc78441942c125a368bd0 100644 (file)
@@ -1,5 +1,4 @@
 /*
- * $Id: uams_guest.c,v 1.8 2001-10-24 14:34:33 srittau Exp $
  *
  * (c) 2001 (see COPYING)
  */
 #include <stdio.h>
 #include <stdlib.h>
 #include <errno.h>
-
-/* STDC check */
-#if STDC_HEADERS
 #include <string.h>
-#else /* STDC_HEADERS */
-#ifndef HAVE_STRCHR
-#define strchr index
-#define strrchr index
-#endif /* HAVE_STRCHR */
-char *strchr (), *strrchr ();
-#ifndef HAVE_MEMCPY
-#define memcpy(d,s,n) bcopy ((s), (d), (n))
-#define memmove(d,s,n) bcopy ((s), (d), (n))
-#endif /* ! HAVE_MEMCPY */
-#endif /* STDC_HEADERS */
-
 #include <pwd.h>
-#include <syslog.h>
 
+#include <atalk/logger.h>
 #include <atalk/afp.h>
 #include <atalk/uam.h>
+#include <atalk/util.h>
+#include <atalk/compat.h>
+
+#ifndef MIN
+#define MIN(a,b) ((a) < (b) ? (a) : (b))
+#endif /* MIN */
 
+/*XXX in etc/papd/file.h */
+struct papfile;
+extern UAM_MODULE_EXPORT void append(struct papfile *, const char *, int);
+
+/* login and login_ext are almost the same */
 static int noauth_login(void *obj, struct passwd **uam_pwd,
-                       char *ibuf, int ibuflen
-                       char *rbuf, int *rbuflen)
+                       char *ibuf _U_, size_t ibuflen _U_
+                       char *rbuf _U_, size_t *rbuflen)
 {
     struct passwd *pwent;
     char *guest, *username;
 
     *rbuflen = 0;
-    syslog( LOG_INFO, "login noauth" );
+    LOG(log_info, logtype_uams, "login noauth" );
 
     if (uam_afpserver_option(obj, UAM_OPTION_GUEST, (void *) &guest,
                             NULL) < 0)
@@ -53,14 +48,14 @@ static int noauth_login(void *obj, struct passwd **uam_pwd,
 
     strcpy(username, guest);
     if ((pwent = getpwnam(guest)) == NULL) {
-       syslog( LOG_ERR, "noauth_login: getpwnam( %s ): %s",
+       LOG(log_error, logtype_uams, "noauth_login: getpwnam( %s ): %s",
                guest, strerror(errno) );
        return( AFPERR_BADUAM );
     }
 
 #ifdef AFS
     if ( setpag() < 0 ) {
-       syslog( LOG_ERR, "noauth_login: setpag: %s", strerror(errno) );
+       LOG(log_error, logtype_uams, "noauth_login: setpag: %s", strerror(errno) );
        return( AFPERR_BADUAM );
     }
 #endif /* AFS */
@@ -69,17 +64,27 @@ static int noauth_login(void *obj, struct passwd **uam_pwd,
     return( AFP_OK );
 }
 
+static int noauth_login_ext(void *obj, char *uname _U_, struct passwd **uam_pwd,
+                     char *ibuf, size_t ibuflen,
+                     char *rbuf, size_t *rbuflen)
+{
+        return ( noauth_login (obj, uam_pwd, ibuf, ibuflen, rbuf, rbuflen));
+}
+
 
 /* Printer NoAuthUAM Login */
-int noauth_printer(start, stop, username, out)
-       char    *start, *stop, *username;
-       struct papfile  *out;
+static int noauth_printer(char *start, char *stop, char *username, struct papfile *out)
 {
     char       *data, *p, *q;
     static const char *loginok = "0\r";
 
     data = (char *)malloc(stop - start + 1);
-    strncpy(data, start, stop - start + 1);
+    if (!data) {
+       LOG(log_info, logtype_uams,"Bad Login NoAuthUAM: malloc");
+       return(-1);
+    }
+
+    strlcpy(data, start, stop - start + 1);
 
     /* We are looking for the following format in data:
      * (username)
@@ -88,39 +93,40 @@ int noauth_printer(start, stop, username, out)
      */
 
     if ((p = strchr(data, '(' )) == NULL) {
-       syslog(LOG_INFO,"Bad Login NoAuthUAM: username not found in string");
+       LOG(log_info, logtype_uams,"Bad Login NoAuthUAM: username not found in string");
        free(data);
        return(-1);
     }
     p++;
-    if ((q = strchr(data, ')' )) == NULL) {
-       syslog(LOG_INFO,"Bad Login NoAuthUAM: username not found in string");
+    if ((q = strchr(p, ')' )) == NULL) {
+       LOG(log_info, logtype_uams,"Bad Login NoAuthUAM: username not found in string");
        free(data);
        return(-1);
     }
-    strncpy(username, p, q - p);
+    memcpy(username, p,  MIN( UAM_USERNAMELEN, q - p ));
 
     /* Done copying username, clean up */
     free(data);
 
     if (getpwnam(username) == NULL) {
-       syslog(LOG_INFO, "Bad Login NoAuthUAM: %s: %s",
+       LOG(log_info, logtype_uams, "Bad Login NoAuthUAM: %s: %s",
               username, strerror(errno) );
        return(-1);
     }
 
     /* Login successful */
     append(out, loginok, strlen(loginok));
-    syslog(LOG_INFO, "Login NoAuthUAM: %s", username);
+    LOG(log_info, logtype_uams, "Login NoAuthUAM: %s", username);
     return(0);
 }
 
 
 static int uam_setup(const char *path)
 {
-  if (uam_register(UAM_SERVER_LOGIN, path, "No User Authent",
-              noauth_login, NULL, NULL) < 0)
-       return -1;
+  if (uam_register(UAM_SERVER_LOGIN_EXT, path, "No User Authent",
+                   noauth_login, NULL, NULL, noauth_login_ext) < 0)
+        return -1;
+
   if (uam_register(UAM_SERVER_PRINTAUTH, path, "NoAuthUAM",
                noauth_printer) < 0)
        return -1;
@@ -128,7 +134,7 @@ static int uam_setup(const char *path)
   return 0;
 }
 
-static void uam_cleanup()
+static void uam_cleanup(void)
 {
   uam_unregister(UAM_SERVER_LOGIN, "No User Authent");
   uam_unregister(UAM_SERVER_PRINTAUTH, "NoAuthUAM");