home *** CD-ROM | disk | FTP | other *** search
/ Usenet 1994 January / usenetsourcesnewsgroupsinfomagicjanuary1994.iso / sources / unix / volume22 / queuer / part02 / qrm.c < prev    next >
Encoding:
C/C++ Source or Header  |  1990-06-07  |  2.4 KB  |  102 lines

  1. /* Copyright 1990  The President and Fellows of Harvard University
  2.  
  3. Permission to use, copy, modify, and distribute this program for any
  4. purpose and without fee is hereby granted, provided that this
  5. copyright and permission notice appear on all copies and supporting
  6. documentation, the name of Harvard University not be used in advertising
  7. or publicity pertaining to distribution of the program, or to results
  8. derived from its use, without specific prior written permission, and notice
  9. be given in supporting documentation that copying and distribution is by
  10. permission of Harvard University.  Harvard University makes no
  11. representations about the suitability of this software for any purpose.
  12. It is provided "as is" without express or implied warranty.    */
  13.  
  14.  
  15. /* qrm.c - Dan Lanciani '85 */
  16.  
  17. #include <stdio.h>
  18. #include <errno.h>
  19. #include <sys/types.h>
  20. #include <sys/socket.h>
  21. #include <netinet/in.h>
  22. #include <netdb.h>
  23. #include <pwd.h>
  24.  
  25. #include "queue.h"
  26.  
  27. extern int errno;
  28. struct servent *sp;
  29.  
  30. main(argc, argv)
  31. char **argv;
  32. {
  33.     register struct passwd *pw;
  34.     register int i, error = 0;
  35.  
  36.     if(argc != 3) {
  37.         fprintf(stderr, "Usage: %s command pid\n", argv[0]);
  38.         exit(1);
  39.     }
  40.     if(!(pw = getpwuid(getuid()))) {
  41.         fprintf(stderr, "Who are you?\n");
  42.         exit(1);
  43.     }
  44.     if(i = readconf(argv[1])) {
  45.         fprintf(stderr, "Unknown configuration (%d)\n", i);
  46.         exit(1);
  47.     }
  48.     if(*qm && (sp = getservbyname("qmaster", "tcp")))
  49.         delq(qm, pw->pw_name, argv[1], argv[2]);
  50.     if(!(sp = getservbyname("queue", "tcp"))) {
  51.         fprintf(stderr, "queue: Bad service?!?\n");
  52.         exit(1);
  53.     }
  54.     for(i = 0; i < hcnt; i++)
  55.         error |= delq(hosts[i], pw->pw_name, argv[1], argv[2]);
  56.     if(error) {
  57.         gethostname(host, sizeof(host));
  58.         delq(host, pw->pw_name, argv[1], argv[2]);
  59.     }
  60. }
  61.  
  62. delq(h, u, p, n)
  63. register char *h, *u, *p, *n;
  64. {
  65.     struct sockaddr_in sin;
  66.     register struct hostent *hp;
  67.     int s, trys, i;
  68.  
  69.     if(!(hp = gethostbyname(h))) {
  70.         fprintf(stderr, "%s: Unknown host?!?\n", h);
  71.         return(1);
  72.     }
  73.     trys = 0;
  74.     i = IPPORT_RESERVED - 1;
  75. retry:
  76.     if((s = rresvport(&i)) < 0) {
  77.         perror("rresvport");
  78.         return(1);
  79.     }
  80.     sin.sin_family = hp->h_addrtype;
  81.     sin.sin_port = sp->s_port;
  82.     bcopy(hp->h_addr, &sin.sin_addr, hp->h_length);
  83.     if(connect(s, &sin, sizeof(sin))) {
  84.         close(s);
  85.         if(trys++ < 5) {
  86.             sleep(trys);
  87.             i--;
  88.             goto retry;
  89.         }
  90.         perror("connect");
  91.         return(1);
  92.     }
  93.     write(s, "\2", 1);
  94.     write(s, u, strlen(u)+1);
  95.     write(s, p, strlen(p)+1);
  96.     write(s, n, strlen(n)+1);
  97.     mode = QM_BACKGROUND;
  98.     com(s, -1);
  99.     close(s);
  100.     return(0);
  101. }
  102.