2018-05-06 12:24:45 +00:00
|
|
|
/* $OpenBSD: session.h,v 1.35 2017/09/12 06:32:07 djm Exp $ */
|
2001-05-04 03:57:05 +00:00
|
|
|
|
2000-09-10 08:31:17 +00:00
|
|
|
/*
|
2002-03-18 09:55:03 +00:00
|
|
|
* Copyright (c) 2000, 2001 Markus Friedl. All rights reserved.
|
2000-09-10 08:31:17 +00:00
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions
|
|
|
|
* are met:
|
|
|
|
* 1. Redistributions of source code must retain the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer.
|
|
|
|
* 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer in the
|
|
|
|
* documentation and/or other materials provided with the distribution.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
|
|
|
|
* IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
|
|
|
|
* OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
|
|
|
|
* IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
|
|
|
|
* INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
|
|
|
|
* NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
|
|
|
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
|
|
|
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
|
|
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
|
|
|
|
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
*/
|
2000-05-15 04:37:24 +00:00
|
|
|
#ifndef SESSION_H
|
|
|
|
#define SESSION_H
|
|
|
|
|
2002-06-23 14:01:54 +00:00
|
|
|
#define TTYSZ 64
|
|
|
|
typedef struct Session Session;
|
|
|
|
struct Session {
|
|
|
|
int used;
|
|
|
|
int self;
|
2008-07-23 09:33:08 +00:00
|
|
|
int next_unused;
|
2002-06-23 14:01:54 +00:00
|
|
|
struct passwd *pw;
|
|
|
|
Authctxt *authctxt;
|
|
|
|
pid_t pid;
|
2006-09-30 13:29:51 +00:00
|
|
|
|
2002-06-23 14:01:54 +00:00
|
|
|
/* tty */
|
|
|
|
char *term;
|
|
|
|
int ptyfd, ttyfd, ptymaster;
|
2002-06-29 11:34:13 +00:00
|
|
|
u_int row, col, xpixel, ypixel;
|
2002-06-23 14:01:54 +00:00
|
|
|
char tty[TTYSZ];
|
2006-09-30 13:29:51 +00:00
|
|
|
|
2002-06-23 14:01:54 +00:00
|
|
|
/* X11 */
|
2002-06-29 11:34:13 +00:00
|
|
|
u_int display_number;
|
2002-06-23 14:01:54 +00:00
|
|
|
char *display;
|
2002-06-29 11:34:13 +00:00
|
|
|
u_int screen;
|
2002-06-23 14:01:54 +00:00
|
|
|
char *auth_display;
|
|
|
|
char *auth_proto;
|
|
|
|
char *auth_data;
|
|
|
|
int single_connection;
|
2006-09-30 13:29:51 +00:00
|
|
|
|
2002-06-23 14:01:54 +00:00
|
|
|
int chanid;
|
2005-09-03 06:59:33 +00:00
|
|
|
int *x11_chanids;
|
2002-06-23 14:01:54 +00:00
|
|
|
int is_subsystem;
|
2014-01-30 10:56:49 +00:00
|
|
|
char *subsys;
|
2005-09-03 06:59:33 +00:00
|
|
|
u_int num_env;
|
2004-10-28 16:03:53 +00:00
|
|
|
struct {
|
|
|
|
char *name;
|
|
|
|
char *val;
|
2006-09-30 13:29:51 +00:00
|
|
|
} *env;
|
2002-06-23 14:01:54 +00:00
|
|
|
};
|
|
|
|
|
2018-05-06 12:24:45 +00:00
|
|
|
void do_authenticated(struct ssh *, Authctxt *);
|
|
|
|
void do_cleanup(struct ssh *, Authctxt *);
|
2000-05-15 04:37:24 +00:00
|
|
|
|
2002-10-29 09:43:00 +00:00
|
|
|
int session_open(Authctxt *, int);
|
2008-07-23 09:33:08 +00:00
|
|
|
void session_unused(int);
|
2018-05-06 12:24:45 +00:00
|
|
|
int session_input_channel_req(struct ssh *, Channel *, const char *);
|
|
|
|
void session_close_by_pid(struct ssh *ssh, pid_t, int);
|
|
|
|
void session_close_by_channel(struct ssh *, int, void *);
|
|
|
|
void session_destroy_all(struct ssh *, void (*)(Session *));
|
2004-02-26 10:38:49 +00:00
|
|
|
void session_pty_cleanup2(Session *);
|
2000-05-15 04:37:24 +00:00
|
|
|
|
2002-06-23 14:01:54 +00:00
|
|
|
Session *session_new(void);
|
|
|
|
Session *session_by_tty(char *);
|
2018-05-06 12:24:45 +00:00
|
|
|
void session_close(struct ssh *, Session *);
|
2002-06-23 14:01:54 +00:00
|
|
|
void do_setusercontext(struct passwd *);
|
2004-01-07 11:10:17 +00:00
|
|
|
|
2017-01-31 12:29:48 +00:00
|
|
|
const char *session_get_remote_name_or_ip(struct ssh *, u_int, int);
|
|
|
|
|
2000-05-15 04:37:24 +00:00
|
|
|
#endif
|