chiark / gitweb /
[PATCH] fix make install rule for when the udev symlink is already there.
[elogind.git] / libsysfs / sysfs_utils.c
index 4475342433d2151262e20ea57c58e0f1005f9a0c..3e50bc61206622b57b384efaa343f95772d7a1c4 100644 (file)
@@ -22,6 +22,9 @@
  */
 #include "libsysfs.h"
 #include "sysfs.h"
+#ifndef __KLIBC__
+#include <mntent.h>
+#endif
 
 /**
  * sysfs_get_mnt_path: Gets the mount point for specified filesystem.
 static int sysfs_get_fs_mnt_path(const unsigned char *fs_type, 
                                unsigned char *mnt_path, size_t len)
 {
+#ifdef __KLIBC__
+       strcpy(mnt_path, "/sys");
+       return 0;
+#else
        FILE *mnt;
        struct mntent *mntent;
        int ret = 0;
@@ -66,6 +73,7 @@ static int sysfs_get_fs_mnt_path(const unsigned char *fs_type,
                ret = -1;
        }
        return ret;
+#endif
 }
 
 /*
@@ -76,12 +84,18 @@ static int sysfs_get_fs_mnt_path(const unsigned char *fs_type,
  */
 int sysfs_get_mnt_path(unsigned char *mnt_path, size_t len)
 {
-       int ret = -1;
+       char *sysfs_path = NULL;
+       int ret = 0;
 
-       if (mnt_path != NULL)
-               ret = sysfs_get_fs_mnt_path(SYSFS_FSTYPE_NAME, mnt_path, len);
-       else
+       if (mnt_path == NULL) {
                errno = EINVAL;
+               return -1;
+       }
+       sysfs_path = getenv(SYSFS_PATH_ENV);
+       if (sysfs_path != NULL)
+               strncpy(mnt_path, sysfs_path, len);
+       else
+               ret = sysfs_get_fs_mnt_path(SYSFS_FSTYPE_NAME, mnt_path, len);
 
        return ret;
 }
@@ -122,7 +136,8 @@ int sysfs_get_link(const unsigned char *path, unsigned char *target, size_t len)
 {
        unsigned char devdir[SYSFS_PATH_MAX];
        unsigned char linkpath[SYSFS_PATH_MAX];
-       unsigned char *d = NULL;
+       unsigned char *d = NULL, *s = NULL;
+       int slashes = 0, count = 0;
 
        if (path == NULL || target == NULL) {
                errno = EINVAL;
@@ -131,12 +146,8 @@ int sysfs_get_link(const unsigned char *path, unsigned char *target, size_t len)
 
        memset(devdir, 0, SYSFS_PATH_MAX);
        memset(linkpath, 0, SYSFS_PATH_MAX);
+       strncpy(devdir, path, SYSFS_PATH_MAX);
 
-       if ((sysfs_get_mnt_path(devdir, SYSFS_PATH_MAX)) != 0) {
-               dprintf("Sysfs not supported on this system\n");
-               return -1;
-       }
-                                                                       
        if ((readlink(path, linkpath, SYSFS_PATH_MAX)) < 0) {
                return -1;
        }
@@ -144,12 +155,25 @@ int sysfs_get_link(const unsigned char *path, unsigned char *target, size_t len)
        d = linkpath;
 
        /* getting rid of leading "../.." */    
-       while (*d == '/' || *d == '.')
+       while (*d == '/' || *d == '.') {
+               if (*d == '/')
+                       slashes++;
                d++;
+       }
 
        d--;
-       
-       strcat(devdir, d);
+
+       s = &devdir[strlen(devdir)-1];
+       while (s != NULL && count != (slashes+1)) {
+               s--;
+               if (*s == '/')
+                       count++;
+       }
+
+       if (s == NULL)
+               return -1;
+
+       strncpy(s, d, (SYSFS_PATH_MAX-strlen(devdir)));
        strncpy(target, devdir, len);
 
        return 0;