summaryrefslogtreecommitdiff
path: root/main.cc
blob: 8448f3f300fb65bd76a001aa24d5e938d0306755 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
#include <assert.h>
#include <errno.h>
#include <grp.h>
#include <pwd.h>
#include <regex>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <sys/types.h>
#include <unistd.h>
#include <utility>
#include <vector>

#ifdef NOISY
#  define DEBUG(...) fprintf( stderr, __VA_ARGS__ )
#else
#  define DEBUG(...) do { } while ( 0 )
#endif

uid_t parse_user( const char *user ) {

  char *end;
  unsigned long tmp;

  DEBUG( "insecuresuexec parse_user( %s )\n", user );

  tmp = strtoul( user, &end, 10 );
  if ( end != user && ! *end ) {
    DEBUG( "  which is the uid %lu\n", tmp );
    return tmp;
  } else {
    DEBUG( "  which is a username\n" );
    errno = 0;
    struct passwd *pw = getpwnam( user );
    assert_perror( errno );
    assert( pw );
    DEBUG( "  corresponding to the uid %u\n", pw->pw_uid );
    return pw->pw_uid;
  };

}

gid_t parse_group( const char *group ) {

  char *end;
  unsigned long tmp;

  DEBUG( "insecuresuexec parse_group( %s )\n", group );

  tmp = strtoul( group, &end, 10 );
  if ( end != group && ! *end ) {
    DEBUG( "  which is the gid %lu\n", tmp );
    return tmp;
  } else {
    DEBUG( "  which is a groupname\n" );
    errno = 0;
    struct group *gr = getgrnam( group );
    assert_perror( errno );
    assert( gr );
    DEBUG( "  corresponding to the gid %u\n", gr->gr_gid );
    return gr->gr_gid;
  };

}

class permission {

  uid_t min_uid, max_uid;
  gid_t min_gid, max_gid;

public:

  permission( std::pair< uid_t, uid_t > uids, std::pair< gid_t, gid_t > gids )
    : min_uid( uids.first )
    , max_uid( uids.second )
    , min_gid( gids.first )
    , max_gid( gids.second )
    {

    DEBUG( "insecuresuexec permission( %u-%u, %u-%u )\n", min_uid, max_uid, min_gid, max_gid );

  }

  const bool allows( uid_t uid, gid_t gid ) {
    return uid >= min_uid && uid <= max_uid && gid >= min_gid && gid <= max_gid;
  }

};

class override {

  std::regex constraint;

public:

  uid_t uid;
  gid_t gid;

  override( uid_t _uid, gid_t _gid, const char *ex )
    : constraint( ex, std::regex_constants::basic )
    , uid( _uid )
    , gid( _gid )
    {

    DEBUG( "insecuresuexec override( %u, %u, %s )\n", _uid, _gid, ex );

  }

  const bool match( const char *str ) {
    return regex_match( str, constraint, std::regex_constants::match_continuous );
  }

};

template< typename thing > std::pair< thing, thing > parse_pair( const char *line, thing (*parse_one)( const char *part ) ) {

  std::pair< thing, thing > ret( 0, -1 );

  size_t part_len = strlen( line );
  assert( part_len > 0 );

  char part[part_len + 1];
  strncpy( part, line, part_len );
  part[part_len] = 0;

  size_t comma = strcspn( line, "," );

  if ( comma == part_len ) {

    thing it = parse_one( part );

    ret.first = it;
    ret.second = it;

  } else {

    size_t first_len = comma;
    size_t second_len = part_len - comma - 1;

    char first[first_len + 1];
    strncpy( first, part, first_len );
    first[first_len] = 0;

    char second[second_len + 1];
    strncpy( second, part + comma + 1, second_len );
    second[second_len] = 0;

    if ( first_len )
      ret.first = parse_one( first );

    if ( second_len )
      ret.second = parse_one( second );

  };

  return ret;

}

permission parse_permission_line( const char *line ) {

  size_t line_len = strcspn( line, "\n" );
  assert( line_len > 0 );

  size_t user_len = strcspn( line, ":" );
  assert( user_len != line_len );

  size_t group_len = line_len - user_len - 1;

  char user[user_len + 1];
  strncpy( user, line, user_len );
  user[user_len] = 0;

  char group[group_len + 1];
  strncpy( group, line + user_len + 1, group_len );
  group[group_len] = 0;

  auto uid_part = parse_pair< uid_t >( user, parse_user );
  auto gid_part = parse_pair< gid_t >( group, parse_group );

  return permission( uid_part, gid_part );

}

override parse_override_line( const char *line ) {

  size_t line_len = strcspn( line, "\n" );
  assert( line_len > 0 );

  size_t user_len = strcspn( line, ":" );
  assert( user_len != line_len );

  size_t group_len = strcspn( line + user_len + 1, " " );
  assert( group_len != line_len - user_len - 1 );

  size_t ex_len = line_len - user_len - 1 - group_len - 1;

  char user[user_len + 1];
  strncpy( user, line, user_len );
  user[user_len] = 0;

  char group[group_len + 1];
  strncpy( group, line + user_len + 1, group_len );
  group[group_len] = 0;

  char ex[ex_len + 1];
  strncpy( ex, line + user_len + 1 + group_len + 1, ex_len );
  ex[ex_len] = 0;

  uid_t uid_part = parse_user( user );
  gid_t gid_part = parse_group( group );

  return override( uid_part, gid_part, ex );

}

std::vector< permission > * read_permissions( const char *file ) {

  FILE *fh = fopen( file, "r" );
  if ( not fh )
    assert_perror( errno );

  auto *ret = new std::vector< permission >( );

  char *line = 0;
  size_t size = 0;

  for ( ; getline( &line, &size, fh ) != -1; ) {

    size_t line_len = strcspn( line, "\n" );
    if ( line_len ) {
      ret->push_back( parse_permission_line( line ) );
    };

  };

  if ( line )
    free( line );

  return ret;

}

std::vector< override > * read_overrides( const char *file ) {

  FILE *fh = fopen( file, "r" );
  if ( not fh )
    assert_perror( errno );

  auto *ret = new std::vector< override >( );

  char *line = 0;
  size_t size = 0;

  for ( ; getline( &line, &size, fh ) != -1; ) {

    size_t line_len = strcspn( line, "\n" );
    if ( line_len ) {
      ret->push_back( parse_override_line( line ) );
    };

  };

  if ( line )
    free( line );

  return ret;

}

int main( int argc, char *argv[] ) {

  DEBUG( "insecuresuexec is parsing the stored permissions...\n" );

  auto allowed = read_permissions( "/etc/insecuresuexec/permissions" );

  DEBUG( "insecuresuexec is parsing the stored overrides...\n" );

  auto override = read_overrides( "/etc/insecuresuexec/overrides" );

  if ( argc < 4 ) {
    fprintf( stderr, "Usage: %s user group cmd [args..]\n", argv[0] );
    return 1;
  };

  char *user = argv[1];
  char *group = argv[2];
  char *cmd = argv[3];
  char **args = argv + 3;

  DEBUG( "insecuresuexec user=%s group=%s cmd=%s\n", user, group, cmd );

  uid_t uid;
  gid_t gid;

  DEBUG( "insecuresuexec is checking the overrides...\n" );

  bool did_override = false;
  for ( auto i = override->begin( ); i != override->end( ); ++i ) {
    if ( i->match( cmd ) ) {

      DEBUG( "  cmd matched, now uid=%u gid=%u\n", i->uid, i->gid );

      uid = i->uid;
      gid = i->gid;

      did_override = true;

      break;
    };
  };

  if ( ! did_override ) {

    DEBUG( "  no matching override found\n" );

    DEBUG( "insecuresuexec is parsing the command-line user and group...\n" );

    uid = parse_user( user );
    gid = parse_group( group );

  };

  // literally the only hard-coded security check
  if ( not uid || not gid ) {
    fprintf( stderr, "Neither uid nor gid may be zero!\n" );
    _exit( 1 );
  };

  DEBUG( "insecuresuexec is running the configured security checks...\n" );

  // the configurable security checks
  bool ok = false;
  for ( auto i = allowed->begin( ); i != allowed->end( ); ++i ) {
    ok |= i->allows( uid, gid );
    if ( ok ) break;
  };
  if ( not ok ) {
    fprintf( stderr, "The uid/gid pair %u/%u is not allowed!\n", uid, gid );
    _exit( 1 );
  };

  DEBUG( "insecuresuexec is going to go ahead with the exec...\n" );

  if ( setgroups( 0, NULL ) != 0 )
    assert_perror( errno );

  if ( setregid( gid, gid ) != 0 )
    assert_perror( errno );

  if ( setreuid( uid, uid ) != 0 )
    assert_perror( errno );

  execv( cmd, args );
  assert_perror( errno );

}