~ubuntu-branches/ubuntu/utopic/gridengine/utopic

« back to all changes in this revision

Viewing changes to source/utilbin/adminrun.c

  • Committer: Bazaar Package Importer
  • Author(s): Mark Hymers
  • Date: 2008-06-25 22:36:13 UTC
  • Revision ID: james.westby@ubuntu.com-20080625223613-tvd9xlhuoct9kyhm
Tags: upstream-6.2~beta2
ImportĀ upstreamĀ versionĀ 6.2~beta2

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*___INFO__MARK_BEGIN__*/
 
2
/*************************************************************************
 
3
 * 
 
4
 *  The Contents of this file are made available subject to the terms of
 
5
 *  the Sun Industry Standards Source License Version 1.2
 
6
 * 
 
7
 *  Sun Microsystems Inc., March, 2001
 
8
 * 
 
9
 * 
 
10
 *  Sun Industry Standards Source License Version 1.2
 
11
 *  =================================================
 
12
 *  The contents of this file are subject to the Sun Industry Standards
 
13
 *  Source License Version 1.2 (the "License"); You may not use this file
 
14
 *  except in compliance with the License. You may obtain a copy of the
 
15
 *  License at http://gridengine.sunsource.net/Gridengine_SISSL_license.html
 
16
 * 
 
17
 *  Software provided under this License is provided on an "AS IS" basis,
 
18
 *  WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING,
 
19
 *  WITHOUT LIMITATION, WARRANTIES THAT THE SOFTWARE IS FREE OF DEFECTS,
 
20
 *  MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE, OR NON-INFRINGING.
 
21
 *  See the License for the specific provisions governing your rights and
 
22
 *  obligations concerning the Software.
 
23
 * 
 
24
 *   The Initial Developer of the Original Code is: Sun Microsystems, Inc.
 
25
 * 
 
26
 *   Copyright: 2001 by Sun Microsystems, Inc.
 
27
 * 
 
28
 *   All Rights Reserved.
 
29
 * 
 
30
 ************************************************************************/
 
31
/*___INFO__MARK_END__*/
 
32
#include <stdio.h>
 
33
#include <signal.h>
 
34
#include <unistd.h>
 
35
#include <stdlib.h>
 
36
#include <sys/types.h>
 
37
#include <pwd.h>
 
38
#include <errno.h>
 
39
 
 
40
#include "basis_types.h"
 
41
#include "msg_utilbin.h"
 
42
#include "sge_uidgid.h"
 
43
 
 
44
 
 
45
void usage(void)
 
46
{
 
47
   fprintf(stderr,"%s\n adminrun username command ...\n\n", MSG_UTILBIN_USAGE );
 
48
   fprintf(stderr,MSG_COMMAND_RUNCOMMANDASUSERNAME_S, "<username>" );
 
49
   fprintf(stderr, "\n");
 
50
   exit(1);
 
51
}
 
52
 
 
53
int main(int argc, char **argv)
 
54
{
 
55
   struct passwd *pw = NULL;
 
56
   int i;
 
57
 
 
58
   if (argc < 3)
 
59
      usage();
 
60
 
 
61
   if(geteuid() != SGE_SUPERUSER_UID) {
 
62
      argv+=2;
 
63
      execvp(argv[0], argv);
 
64
      fprintf(stderr, "execvp errno=%d\n", errno);
 
65
      fprintf(stderr, "Arguments, passed to adminrun:\n");
 
66
      for (i=0; argv[i] != NULL; i++) {
 
67
         fprintf(stderr, "argv[%d] = %s\n", i, argv[i]);
 
68
      }
 
69
      fprintf(stderr, MSG_COMMAND_EXECUTEFAILED_S , argv[0]);
 
70
      fprintf(stderr, "\n");
 
71
      return 127;
 
72
   }
 
73
 
 
74
   i = 10;
 
75
   while (i-- && !pw)   
 
76
      pw = getpwnam(argv[1]);   
 
77
 
 
78
   if (!pw || !pw->pw_name) {
 
79
      fprintf(stderr, MSG_SYSTEM_RESOLVEUSERFAILED_S , argv[1]);
 
80
      fprintf(stderr, "\n");
 
81
      return 1;
 
82
   }
 
83
   
 
84
   setgid(pw->pw_gid);
 
85
   setuid(pw->pw_uid);  
 
86
 
 
87
   argv += 2;
 
88
   execvp(argv[0], argv);
 
89
   fprintf(stderr, "execvp errno=%d\n", errno);
 
90
   fprintf(stderr, "Arguments, passed to adminrun:\n");
 
91
   for (i=0; argv[i] != NULL; i++) {
 
92
      fprintf(stderr, "argv[%d] = %s\n", i, argv[i]);
 
93
   }
 
94
 
 
95
   fprintf(stderr, MSG_COMMAND_EXECUTEFAILED_S , argv[0]);
 
96
   fprintf(stderr, "\n");
 
97
   return 127;
 
98
}