#include #include #include #include #include "ourhdr.h" /* Create a client endpoint and connect to a server. */ #define CLI_PATH "/var/tmp/" /* +5 for pid = 14 chars */ #define CLI_PERM S_IRWXU /* rwx for user only */ int /* returns fd if all OK, <0 on error */ cli_conn(const char *name) { int fd, len; struct sockaddr_un unix_addr; /* create a Unix domain stream socket */ if ( (fd = socket(AF_UNIX, SOCK_STREAM, 0)) < 0) return(-1); /* fill socket address structure w/our address */ memset(&unix_addr, 0, sizeof(unix_addr)); unix_addr.sun_family = AF_UNIX; sprintf(unix_addr.sun_path, "%s%05d", CLI_PATH, getpid()); #ifdef SCM_RIGHTS /* 4.3BSD Reno and later */ len = sizeof(unix_addr.sun_len) + sizeof(unix_addr.sun_family) + strlen(unix_addr.sun_path) + 1; unix_addr.sun_len = len; #else /* vanilla 4.3BSD */ len = strlen(unix_addr.sun_path) + sizeof(unix_addr.sun_family); if (len != 16) err_quit("length != 16"); /* hack */ #endif unlink(unix_addr.sun_path); /* in case it already exists */ if (bind(fd, (struct sockaddr *) &unix_addr, len) < 0) return(-2); if (chmod(unix_addr.sun_path, CLI_PERM) < 0) return(-3); /* fill socket address structure w/server's addr */ memset(&unix_addr, 0, sizeof(unix_addr)); unix_addr.sun_family = AF_UNIX; strcpy(unix_addr.sun_path, name); #ifdef SCM_RIGHTS /* 4.3BSD Reno and later */ len = sizeof(unix_addr.sun_len) + sizeof(unix_addr.sun_family) + strlen(unix_addr.sun_path) + 1; unix_addr.sun_len = len; #else /* vanilla 4.3BSD */ len = strlen(unix_addr.sun_path) + sizeof(unix_addr.sun_family); #endif if (connect(fd, (struct sockaddr *) &unix_addr, len) < 0) return(-4); return(fd); }