summaryrefslogtreecommitdiffhomepage
path: root/svr-chansession.c
AgeCommit message (Collapse)Author
2007-02-12Revert to default sigchld handler after forking, don't exitMatt Johnston
on error writing to the signal_pipe. --HG-- branch : channel-fix extra : convert_revision : 1d7826f7be07ee728abb42b6a9826d8ea7142fbe
2007-02-12- Fix bug in child-exit handling where the wrong pid was being matched.Matt Johnston
- Also wait for errfd to close before closing the channel --HG-- branch : channel-fix extra : convert_revision : ed68ea8963f7d1fa600f81479e7e211efc5a31bc
2007-02-09Improve behaviour when flushing out after a process has exited.Matt Johnston
--HG-- branch : channel-fix extra : convert_revision : e73ee8f7ae404a9355685c30828a0ad4524031bc
2007-02-03propagate from branch 'au.asn.ucc.matt.dropbear' (head ↵Matt Johnston
b1dd3b94e60a07a176dba2b035ac79968595990a) to branch 'au.asn.ucc.matt.dropbear.channel-fix' (head fc77c3dea87a7c0f374e738d055f0b455495cbc3) --HG-- branch : channel-fix extra : convert_revision : dec459c955c306f9ecddc3b4e04a963f3f264a0f
2007-02-03merge of '1250b8af44b62d8f4fe0f8d9fc7e7a1cc34e7e1c'Matt Johnston
and '7f8670ac3bb975f40967f3979d09d2199b7e90c8' --HG-- extra : convert_revision : 6b61c50f4cf888bea302ac8fcf5dbb573b443251
2007-02-03disapproval of revision '2186a678a5f79ef432f6593a10e3e13df2a313d5'Matt Johnston
--HG-- extra : convert_revision : 1250b8af44b62d8f4fe0f8d9fc7e7a1cc34e7e1c
2006-12-06merge of '182c2d8dbd5321ef4d1df8758936f4dc7127015f'Matt Johnston
and '31dcd7a22983ef19d6c63248e415e71d292dd0ec' --HG-- extra : convert_revision : e84f66826c7ee6ebe99ef92cc0f6c22ecf638d01
2006-11-02comment about putenv() leaking malloced variablesMatt Johnston
--HG-- extra : convert_revision : 80deca87cb2af2dde457882170b9095eeb9c2edb
2006-11-02make code clearer and more robust (from Klocwork)Matt Johnston
--HG-- extra : convert_revision : 397b243ca9ec623ded7b5b93e115dc460527acca
2006-10-09Passes most test cases nowMatt Johnston
--HG-- branch : channel-fix extra : convert_revision : 5a5f398411a7a3baa9472daa80fea0574fbd8a9a
2006-10-02Rearranged some more bits, marked some areas that need work.Matt Johnston
* send_msg_channel_data() no longer allocates a separate buffer * getchannel() handles unknown channels so callers don't have to --HG-- branch : channel-fix extra : convert_revision : 3db645581be0fbb0d2ac8d218fbd55e096cbbbe5
2006-10-01just shuffle some variables names about, a brief commentMatt Johnston
about the "bad writefd" problem --HG-- branch : channel-fix extra : convert_revision : f0b407c3d3e047ed83174e6f4ebd85a19352df5b
2006-08-07merge of '9a4e042fd565f46141e81e0c1ab90260303348fe'Matt Johnston
and 'bea3887a5875cf3ab8a1331e15e698b37b61fe37' --HG-- extra : convert_revision : d05a6820ef6a95047d07edf66390e03afa32d556
2006-08-07Add (disabled by default) LOG_COMMANDS option to log the commands executedMatt Johnston
by clients. --HG-- extra : convert_revision : bea3887a5875cf3ab8a1331e15e698b37b61fe37
2006-07-07Make flow of execution clearer for getting process exit statusMatt Johnston
--HG-- extra : convert_revision : 9a15e5205a3fd8ac4d23118f1857db9fa9d58a90
2006-06-11progress towards exiting on writefd closure rather thanMatt Johnston
on process exit - dbclient hangs with scp, so requires work. --HG-- extra : convert_revision : 2186a678a5f79ef432f6593a10e3e13df2a313d5
2006-03-27send success message for successful window change requestMatt Johnston
--HG-- extra : convert_revision : 2a6c9eb6a9c0f8a0b7b479aaf075c8a195339fcd
2006-03-08merge of 4c883eb469d2d251ee8abddbc11ae4005db6da17Matt Johnston
and bed6155e95a293c9fce7e889d283b5958f3035dc --HG-- extra : convert_revision : fff0894a0399405a9410ea1c6d118f342cf2aa64
2006-03-08* Per-IP connection unauthed connection limitsMatt Johnston
* m_close() exits fatally on failure * other cleanups --HG-- extra : convert_revision : bed6155e95a293c9fce7e889d283b5958f3035dc
2006-02-28merge of 50848a51c2f9867bc10e81826190dbc326ea16b9Matt Johnston
and 84e3597daa468534c4a34231ae8761f841a0f5ae --HG-- extra : convert_revision : 11ad05bc47809dbfe9510b78805f6ce52896d884
2006-02-28Merge of the uClinux-dist patch, should work in inetd modeMatt Johnston
--HG-- extra : convert_revision : 976bfa569f133be97d6f57c89bffa0311a142be3
2006-02-11Only read /dev/random once when the program startsMatt Johnston
rather than for every connection, to "conserve entropy". --HG-- extra : convert_revision : 21df240b71c0af8454725dec9abb428dd4bb97a2
2005-12-08 * fix incorrect array sizingMatt Johnston
--HG-- extra : convert_revision : e1322d52370db709625e024975f7c97fb8ed58c7
2005-10-20 * rename infd/outfd to writefd/readfd, to avoid confusionMatt Johnston
--HG-- extra : convert_revision : e3e7dc2cf75ad60c83a5b4307c210fee2fe90434
2005-09-05* use own assertions which should get logged properlyMatt Johnston
--HG-- extra : convert_revision : 3dc365619f0840ab5781660b1257a9f22c05d3fe
2005-06-02* fix off-by-one closing open FDsMatt Johnston
--HG-- extra : convert_revision : cb23685eb24523d372c07830faea3a96e7c37917
2005-05-27Seperate out exit errors from setgid()/initgroups(), and errors from setuid(),Matt Johnston
to make debugging a bit easier --HG-- extra : convert_revision : ea1f23ab2f94d0416e0bac38f63c9850396184c4
2005-03-13* fix longstanding bug with connections being closed on failure toMatt Johnston
connect to auth socket (server) * differentiate between get_byte and get_bool * get rid of some // comments * general tidying --HG-- extra : convert_revision : fb8d188ce33b6b45804a5ce51b9f601f83bdf3d7
2005-01-19put back 'return;' on empty terminal mode strings which was erroneouslyMatt Johnston
removed in 3a6c6eeefe450a64e244ee39030938ddaacb8987 --HG-- extra : convert_revision : 75ed8083a683ebdb2fceca4a856d803fdeeb60af
2005-01-02Fixed DEBUG_TRACE macro so that we don't get semicolons left about the placeMatt Johnston
--HG-- extra : convert_revision : d928bc851e32be7bd429bf7504b148c0e4bf7e2f
2004-10-17Initialise the "lastexit" variable so that we don't get session channelsMatt Johnston
terminating prematurely. --HG-- extra : convert_revision : 5cb8d5a7c8fe405fa4d49906f66a61590ae4a087
2004-09-21propagate of 82bb923d0154750ef716b66b498561f882891946 and ↵Matt Johnston
f51a272341ee12268fe7028bc2f2bad66c603069 from branch 'matt.dbclient.work' to 'matt.dbclient.rez' --HG-- branch : private-rez extra : convert_revision : 440ee4177122c8a873ebf8984a90f96a9bd8a56a
2004-08-31WCOREDUMP finallyMatt Johnston
--HG-- extra : convert_revision : 12aa4fdb328febedfd3fd50d1dae783d8a0dab14
2004-08-27merge of 50be59810e462f9f44f55e421227d6aa0b31982bMatt Johnston
and 69b007796063cb5f042be7cca2d479e90db869c3 --HG-- extra : convert_revision : 5d0dfaa8c0ee6c728a3b4f0f0855199ba729db83
2004-08-26- added circular buffering for channelsMatt Johnston
- added stderr support for the client - cleaned up a bunch of "unused" warnings, duplicated header definitions - added exit-status support for the client --HG-- extra : convert_revision : 5bdf806d8b440c87f7235414662f4189195618f4
2004-08-18Mention the race condition between setting the childpid entry, andMatt Johnston
the child exiting. --HG-- extra : convert_revision : 0acd2d97675d6a45fa1664790b4b9c891461de10
2004-08-17fix for AIX not having WCOREDUMPMatt Johnston
--HG-- extra : convert_revision : 9a728aa6db6d1105267c377fa3d5448ee5f5a4ca
2004-08-12Merging in the changes from 0.41-0.43 main Dropbear treeMatt Johnston
--HG-- extra : convert_revision : 4c3428781bc8faf0fd7cadd7099fbd7f4ea386e7
2004-08-10just checkpointingMatt Johnston
--HG-- extra : convert_revision : fbbf404290f3fea3dfa9f6f53eba9389057e9044
2004-08-01- Added terminal mode handling etc for the client, and window changeMatt Johnston
- Refactored the terminal-mode handling for the server - Improved session closing for the client --HG-- extra : convert_revision : 9d19b4f22c39798af5f3f24c2022f8caec4919e8
2004-07-27Progressing client supportMatt Johnston
--HG-- extra : convert_revision : 48946be1cef774d1c33b0f78689962b18720c627
2004-07-20switching to global varsMatt Johnston
--HG-- extra : convert_revision : 800073097767c2ac153ab834cbcf0121cb765118
2004-06-03Mostly done with the listener changeoverMatt Johnston
--HG-- extra : convert_revision : 1a4dca8836a2a04a21fb675c718a549a8d445d25
2004-06-03- Reworked non-channel fd handling to listener.cMatt Johnston
- More channel cleaning up --HG-- extra : convert_revision : 385ec76d0304b93e277d1cc193383db5fd773703
2004-06-02Chantype handling is sortedMatt Johnston
--HG-- extra : convert_revision : 807efead6ecf690f147fd8145aa9d78ff894cdb2
2004-06-01Sorted out the first channel init issues.Matt Johnston
--HG-- extra : convert_revision : 67676f36b78efac878c11943d78a5de827498d05
2004-06-01Makefile.in contains updated files requiredMatt Johnston
--HG-- extra : convert_revision : cc8a8c49dc70e632c352853a39801089b08149be